Getting Halo Infinite Match Stats With Official Halo API
Table of Contents
Now that I got authentication out of the way, it’s time that we actually get something useful done with the Halo Infinite API. This whole saga started with me wanting to get the match stats so that I can analyze them outside the game, and that’s what I thought I’d tackle first.
There are several endpoints that enable us to get match information, that I will be discussing more in-depth in this blog post. You can use the table of contents below to quickly jump to relevant sections. You will notice that I am talking about results for different methods in JSON and XML formats - this can be controlled through the Accept
header. Setting it to application/json
will return JSON data, and application/xml
will yield XML, respectively. The responses also support Bond - if you look at the game traffic, you’ll notice an inconspicuous application/x-bond-compact-binary
, however I’ve omitted those from this post because the content is not human-readable without doing some parsing first.
- Match privacy
- Match count
- Match history
- Match stats
- Match skill results
- Match progression
- Spectating a match
- Conclusion
Match privacy #
Returns the privacy settings around matches that the player takes part in.
The JSON response is less descriptive when it comes to concrete privacy settings, however those are more obvious if you request an XML response.
The {player}
segment in the endpoint URL should be replaced with the player XUID, in the format of xuid(00000)
.
Endpoint #
https://halostats.svc.halowaypoint.com/hi/players/{player}/matches-privacy
Required Headers #
Header | Required |
---|---|
x-343-authorization-spartan |
Yes |
343-clearance |
No |
Example Response #
JSON #
{
"MatchmadeGames": 1,
"OtherGames": 2
}
XML #
<MatchPrivacy xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Microsoft.Halo.HaloStats.Bond.HaloInfinite.Player">
<MatchmadeGames>Share</MatchmadeGames>
<OtherGames>Hide</OtherGames>
</MatchPrivacy>
Match count #
Returns the number of matches of different types that the player participated in.
The {player}
segment in the endpoint URL should be replaced with the player XUID, in the format of xuid(00000)
.
Endpoint #
https://halostats.svc.halowaypoint.com/hi/players/{player}/matches/count
Required Headers #
Header | Required |
---|---|
x-343-authorization-spartan |
Yes |
343-clearance |
No |
Example Response #
JSON #
{
"CustomMatchesPlayedCount": 1,
"MatchesPlayedCount": 191,
"MatchmadeMatchesPlayedCount": 190,
"LocalMatchesPlayedCount": 0
}
XML #
<MatchCount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Microsoft.Halo.HaloStats.Bond.HaloInfinite.Player">
<CustomMatchesPlayedCount>1</CustomMatchesPlayedCount>
<LocalMatchesPlayedCount>0</LocalMatchesPlayedCount>
<MatchesPlayedCount>191</MatchesPlayedCount>
<MatchmadeMatchesPlayedCount>190</MatchmadeMatchesPlayedCount>
</MatchCount>
Match history #
Returns the detailed match history for a given player. Returned match information returns information about the season, playlist, map, match outcome, player rank, and whether the player was present at the end of the match.
The call to this endpoint accepts query parameters that can limit the number of results, such as count
for specifying how many matches to return, and start
to identify the match from which to start counting the results. By default, a call to this endpoint will return the last 25 matches.
The {player}
segment in the endpoint URL should be replaced with the player XUID, in the format of xuid(00000)
.
Endpoint #
https://halostats.svc.halowaypoint.com/hi/players/{player}/matches
Required Headers #
Header | Required |
---|---|
x-343-authorization-spartan |
Yes |
343-clearance |
No |
Example Response #
JSON #
{
"Start": 0,
"Count": 2,
"ResultCount": 2,
"Results": [
{
"MatchId": "MATCH_GUID",
"MatchInfo": {
"StartTime": "2022-01-24T06:02:00.875Z",
"EndTime": "2022-01-24T06:10:43.095Z",
"Duration": "PT8M5.3752833S",
"LifecycleMode": 3,
"GameVariantCategory": 7,
"LevelId": "fc878857-e778-4daf-b0ef-5d826b922f3f",
"MapVariant": {
"AssetKind": 2,
"AssetId": "33c0766c-ef15-48f8-b298-34aba5bff3b4",
"VersionId": "8de91561-b9f7-4669-97ef-42e65fb507a7"
},
"UgcGameVariant": {
"AssetKind": 6,
"AssetId": "4d0f6e15-cc3f-46e0-9d06-22de6311c4cb",
"VersionId": "d6a43d27-9a54-4873-b7b5-fb2c22539fdc"
},
"ClearanceId": "c1178956-c7c8-4860-a3a7-da5caa55faad",
"Playlist": {
"AssetKind": 3,
"AssetId": "0c47c724-3625-4243-a3fd-29b66a2aea6d",
"VersionId": "39422e82-a4d0-4f4a-bce0-8dd839664996"
},
"PlaylistExperience": 5,
"PlaylistMapModePair": {
"AssetKind": 7,
"AssetId": "5f967711-e7ac-4f3c-bc83-a7b4e707486b",
"VersionId": "799b9bce-b5ab-4796-85bd-271849e7cc17"
},
"SeasonId": "Seasons/Season6.json",
"PlayableDuration": "PT7M50.281S",
"TeamsEnabled": true,
"TeamScoringEnabled": true
},
"LastTeamId": 1,
"Outcome": 3,
"Rank": 5,
"PresentAtEndOfMatch": true
},
{
"MatchId": "MATCH_GUID",
"MatchInfo": {
"StartTime": "2022-01-24T05:56:08.095Z",
"EndTime": "2022-01-24T06:01:00.306Z",
"Duration": "PT4M28.5108442S",
"LifecycleMode": 3,
"GameVariantCategory": 7,
"LevelId": "c0264785-90c8-4946-bf16-06dbfd056bff",
"MapVariant": {
"AssetKind": 2,
"AssetId": "8420410b-044d-44d7-80b6-98a766c8c39f",
"VersionId": "068c0974-f748-41ba-b457-b8fed603576e"
},
"UgcGameVariant": {
"AssetKind": 6,
"AssetId": "4d0f6e15-cc3f-46e0-9d06-22de6311c4cb",
"VersionId": "d6a43d27-9a54-4873-b7b5-fb2c22539fdc"
},
"ClearanceId": "c1178956-c7c8-4860-a3a7-da5caa55faad",
"Playlist": {
"AssetKind": 3,
"AssetId": "0c47c724-3625-4243-a3fd-29b66a2aea6d",
"VersionId": "39422e82-a4d0-4f4a-bce0-8dd839664996"
},
"PlaylistExperience": 5,
"PlaylistMapModePair": {
"AssetKind": 7,
"AssetId": "54993269-2aff-4bd0-b81c-83b7f84ca9f9",
"VersionId": "78d24a48-9709-41a0-b84e-ef5805d63a2b"
},
"SeasonId": "Seasons/Season6.json",
"PlayableDuration": "PT4M20.953S",
"TeamsEnabled": true,
"TeamScoringEnabled": true
},
"LastTeamId": 1,
"Outcome": 3,
"Rank": 5,
"PresentAtEndOfMatch": true
}
],
"Links": {}
}
XML #
<MatchHistoryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Microsoft.Halo.HaloStats.Bond.HaloInfinite.Match.MatchHistory">
<Count xmlns="http://schemas.datacontract.org/2004/07/Microsoft.Studios.Bond.Contract">2</Count>
<Links xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://schemas.datacontract.org/2004/07/Microsoft.Studios.Bond.Contract" />
<ResultCount xmlns="http://schemas.datacontract.org/2004/07/Microsoft.Studios.Bond.Contract">2</ResultCount>
<Results xmlns:d2p1="http://schemas.datacontract.org/2004/07/Microsoft.Halo.HaloStats.Bond.HaloInfinite.Match.MatchHistory" xmlns="http://schemas.datacontract.org/2004/07/Microsoft.Studios.Bond.Contract">
<d2p1:PlayerMatchHistoryRecord>
<d2p1:LastTeamId>1</d2p1:LastTeamId>
<d2p1:MatchId xmlns:d4p1="http://schemas.datacontract.org/2004/07/Bond">
<d4p1:Data1>GUID_PART_A</d4p1:Data1>
<d4p1:Data2>GUID_PART_B</d4p1:Data2>
<d4p1:Data3>GUID_PART_C</d4p1:Data3>
<d4p1:Data4>GUID_PART_D</d4p1:Data4>
</d2p1:MatchId>
<d2p1:MatchInfo xmlns:d4p1="http://schemas.datacontract.org/2004/07/Microsoft.Halo.HaloStats.Bond.HaloInfinite">
<d4p1:ClearanceId xmlns:d5p1="http://schemas.datacontract.org/2004/07/Bond">
<d5p1:Data1>3239545174</d5p1:Data1>
<d5p1:Data2>51144</d5p1:Data2>
<d5p1:Data3>18528</d5p1:Data3>
<d5p1:Data4>12536426702929831843</d5p1:Data4>
</d4p1:ClearanceId>
<d4p1:Duration>PT8M5.3752833S</d4p1:Duration>
<d4p1:EndTime>2022-01-24T06:10:43.095Z</d4p1:EndTime>
<d4p1:GameVariantCategory>MultiplayerAttrition</d4p1:GameVariantCategory>
<d4p1:LevelId xmlns:d5p1="http://schemas.datacontract.org/2004/07/Bond">
<d5p1:Data1>4236740695</d5p1:Data1>
<d5p1:Data2>59256</d5p1:Data2>
<d5p1:Data3>19887</d5p1:Data3>
<d5p1:Data4>4553018738741211056</d5p1:Data4>
</d4p1:LevelId>
<d4p1:LifecycleMode>Matchmade</d4p1:LifecycleMode>
<d4p1:MapVariant xmlns:d5p1="http://schemas.datacontract.org/2004/07/Microsoft.Halo.InfiniteUGC.Bond">
<d5p1:AssetId xmlns:d6p1="http://schemas.datacontract.org/2004/07/Bond">
<d6p1:Data1>868251244</d6p1:Data1>
<d6p1:Data2>61205</d6p1:Data2>
<d6p1:Data3>18680</d6p1:Data3>
<d6p1:Data4>13038976064430577842</d6p1:Data4>
</d5p1:AssetId>
<d5p1:AssetKind>Map</d5p1:AssetKind>
<d5p1:VersionId xmlns:d6p1="http://schemas.datacontract.org/2004/07/Bond">
<d6p1:Data1>2380862817</d6p1:Data1>
<d6p1:Data2>47607</d6p1:Data2>
<d6p1:Data3>18025</d6p1:Data3>
<d6p1:Data4>12035787952660606871</d6p1:Data4>
</d5p1:VersionId>
</d4p1:MapVariant>
<d4p1:PlayableDuration>PT7M50.281S</d4p1:PlayableDuration>
<d4p1:Playlist xmlns:d5p1="http://schemas.datacontract.org/2004/07/Microsoft.Halo.InfiniteUGC.Bond">
<d5p1:AssetId xmlns:d6p1="http://schemas.datacontract.org/2004/07/Bond">
<d6p1:Data1>206030628</d6p1:Data1>
<d6p1:Data2>13861</d6p1:Data2>
<d6p1:Data3>16963</d6p1:Data3>
<d6p1:Data4>7920189532495543715</d6p1:Data4>
</d5p1:AssetId>
<d5p1:AssetKind>Playlist</d5p1:AssetKind>
<d5p1:VersionId xmlns:d6p1="http://schemas.datacontract.org/2004/07/Bond">
<d6p1:Data1>960638594</d6p1:Data1>
<d6p1:Data2>42192</d6p1:Data2>
<d6p1:Data3>20298</d6p1:Data3>
<d6p1:Data4>10829299177621414076</d6p1:Data4>
</d5p1:VersionId>
</d4p1:Playlist>
<d4p1:PlaylistExperience>Featured</d4p1:PlaylistExperience>
<d4p1:PlaylistMapModePair xmlns:d5p1="http://schemas.datacontract.org/2004/07/Microsoft.Halo.InfiniteUGC.Bond">
<d5p1:AssetId xmlns:d6p1="http://schemas.datacontract.org/2004/07/Bond">
<d6p1:Data1>1603696401</d6p1:Data1>
<d6p1:Data2>59308</d6p1:Data2>
<d6p1:Data3>20284</d6p1:Data3>
<d6p1:Data4>7730437452131173308</d6p1:Data4>
</d5p1:AssetId>
<d5p1:AssetKind>MapModePair</d5p1:AssetKind>
<d5p1:VersionId xmlns:d6p1="http://schemas.datacontract.org/2004/07/Bond">
<d6p1:Data1>2040241102</d6p1:Data1>
<d6p1:Data2>46507</d6p1:Data2>
<d6p1:Data3>18326</d6p1:Data3>
<d6p1:Data4>1714999859245202821</d6p1:Data4>
</d5p1:VersionId>
</d4p1:PlaylistMapModePair>
<d4p1:SeasonId>Seasons/Season6.json</d4p1:SeasonId>
<d4p1:StartTime>2022-01-24T06:02:00.875Z</d4p1:StartTime>
<d4p1:TeamScoringEnabled>true</d4p1:TeamScoringEnabled>
<d4p1:TeamsEnabled>true</d4p1:TeamsEnabled>
<d4p1:UgcGameVariant xmlns:d5p1="http://schemas.datacontract.org/2004/07/Microsoft.Halo.InfiniteUGC.Bond">
<d5p1:AssetId xmlns:d6p1="http://schemas.datacontract.org/2004/07/Bond">
<d6p1:Data1>1292856853</d6p1:Data1>
<d6p1:Data2>52287</d6p1:Data2>
<d6p1:Data3>18144</d6p1:Data3>
<d6p1:Data4>14682879805760865949</d6p1:Data4>
</d5p1:AssetId>
<d5p1:AssetKind>UgcGameVariant</d5p1:AssetKind>
<d5p1:VersionId xmlns:d6p1="http://schemas.datacontract.org/2004/07/Bond">
<d6p1:Data1>3601087783</d6p1:Data1>
<d6p1:Data2>39508</d6p1:Data2>
<d6p1:Data3>18547</d6p1:Data3>
<d6p1:Data4>15897516615889827255</d6p1:Data4>
</d5p1:VersionId>
</d4p1:UgcGameVariant>
</d2p1:MatchInfo>
<d2p1:Outcome>Loss</d2p1:Outcome>
<d2p1:PresentAtEndOfMatch>true</d2p1:PresentAtEndOfMatch>
<d2p1:Rank>5</d2p1:Rank>
</d2p1:PlayerMatchHistoryRecord>
<d2p1:PlayerMatchHistoryRecord>
<d2p1:LastTeamId>1</d2p1:LastTeamId>
<d2p1:MatchId xmlns:d4p1="http://schemas.datacontract.org/2004/07/Bond">
<d4p1:Data1>GUID_PART_A</d4p1:Data1>
<d4p1:Data2>GUID_PART_B</d4p1:Data2>
<d4p1:Data3>GUID_PART_C</d4p1:Data3>
<d4p1:Data4>GUID_PART_D</d4p1:Data4>
</d2p1:MatchId>
<d2p1:MatchInfo xmlns:d4p1="http://schemas.datacontract.org/2004/07/Microsoft.Halo.HaloStats.Bond.HaloInfinite">
<d4p1:ClearanceId xmlns:d5p1="http://schemas.datacontract.org/2004/07/Bond">
<d5p1:Data1>3239545174</d5p1:Data1>
<d5p1:Data2>51144</d5p1:Data2>
<d5p1:Data3>18528</d5p1:Data3>
<d5p1:Data4>12536426702929831843</d5p1:Data4>
</d4p1:ClearanceId>
<d4p1:Duration>PT4M28.5108442S</d4p1:Duration>
<d4p1:EndTime>2022-01-24T06:01:00.306Z</d4p1:EndTime>
<d4p1:GameVariantCategory>MultiplayerAttrition</d4p1:GameVariantCategory>
<d4p1:LevelId xmlns:d5p1="http://schemas.datacontract.org/2004/07/Bond">
<d5p1:Data1>3223734149</d5p1:Data1>
<d5p1:Data2>37064</d5p1:Data2>
<d5p1:Data3>18758</d5p1:Data3>
<d5p1:Data4>18404810890039137983</d5p1:Data4>
</d4p1:LevelId>
<d4p1:LifecycleMode>Matchmade</d4p1:LifecycleMode>
<d4p1:MapVariant xmlns:d5p1="http://schemas.datacontract.org/2004/07/Microsoft.Halo.InfiniteUGC.Bond">
<d5p1:AssetId xmlns:d6p1="http://schemas.datacontract.org/2004/07/Bond">
<d6p1:Data1>2216706315</d6p1:Data1>
<d6p1:Data2>1101</d6p1:Data2>
<d6p1:Data3>17623</d6p1:Data3>
<d6p1:Data4>11512265415713142400</d6p1:Data4>
</d5p1:AssetId>
<d5p1:AssetKind>Map</d5p1:AssetKind>
<d5p1:VersionId xmlns:d6p1="http://schemas.datacontract.org/2004/07/Bond">
<d6p1:Data1>109840756</d6p1:Data1>
<d6p1:Data2>63304</d6p1:Data2>
<d6p1:Data3>16826</d6p1:Data3>
<d6p1:Data4>7950827889077278644</d6p1:Data4>
</d5p1:VersionId>
</d4p1:MapVariant>
<d4p1:PlayableDuration>PT4M20.953S</d4p1:PlayableDuration>
<d4p1:Playlist xmlns:d5p1="http://schemas.datacontract.org/2004/07/Microsoft.Halo.InfiniteUGC.Bond">
<d5p1:AssetId xmlns:d6p1="http://schemas.datacontract.org/2004/07/Bond">
<d6p1:Data1>206030628</d6p1:Data1>
<d6p1:Data2>13861</d6p1:Data2>
<d6p1:Data3>16963</d6p1:Data3>
<d6p1:Data4>7920189532495543715</d6p1:Data4>
</d5p1:AssetId>
<d5p1:AssetKind>Playlist</d5p1:AssetKind>
<d5p1:VersionId xmlns:d6p1="http://schemas.datacontract.org/2004/07/Bond">
<d6p1:Data1>960638594</d6p1:Data1>
<d6p1:Data2>42192</d6p1:Data2>
<d6p1:Data3>20298</d6p1:Data3>
<d6p1:Data4>10829299177621414076</d6p1:Data4>
</d5p1:VersionId>
</d4p1:Playlist>
<d4p1:PlaylistExperience>Featured</d4p1:PlaylistExperience>
<d4p1:PlaylistMapModePair xmlns:d5p1="http://schemas.datacontract.org/2004/07/Microsoft.Halo.InfiniteUGC.Bond">
<d5p1:AssetId xmlns:d6p1="http://schemas.datacontract.org/2004/07/Bond">
<d6p1:Data1>1419326057</d6p1:Data1>
<d6p1:Data2>11007</d6p1:Data2>
<d6p1:Data3>19408</d6p1:Data3>
<d6p1:Data4>17989994817622580408</d6p1:Data4>
</d5p1:AssetId>
<d5p1:AssetKind>MapModePair</d5p1:AssetKind>
<d5p1:VersionId xmlns:d6p1="http://schemas.datacontract.org/2004/07/Bond">
<d6p1:Data1>2027047496</d6p1:Data1>
<d6p1:Data2>38665</d6p1:Data2>
<d6p1:Data3>16800</d6p1:Data3>
<d6p1:Data4>3115037410735378104</d6p1:Data4>
</d5p1:VersionId>
</d4p1:PlaylistMapModePair>
<d4p1:SeasonId>Seasons/Season6.json</d4p1:SeasonId>
<d4p1:StartTime>2022-01-24T05:56:08.095Z</d4p1:StartTime>
<d4p1:TeamScoringEnabled>true</d4p1:TeamScoringEnabled>
<d4p1:TeamsEnabled>true</d4p1:TeamsEnabled>
<d4p1:UgcGameVariant xmlns:d5p1="http://schemas.datacontract.org/2004/07/Microsoft.Halo.InfiniteUGC.Bond">
<d5p1:AssetId xmlns:d6p1="http://schemas.datacontract.org/2004/07/Bond">
<d6p1:Data1>1292856853</d6p1:Data1>
<d6p1:Data2>52287</d6p1:Data2>
<d6p1:Data3>18144</d6p1:Data3>
<d6p1:Data4>14682879805760865949</d6p1:Data4>
</d5p1:AssetId>
<d5p1:AssetKind>UgcGameVariant</d5p1:AssetKind>
<d5p1:VersionId xmlns:d6p1="http://schemas.datacontract.org/2004/07/Bond">
<d6p1:Data1>3601087783</d6p1:Data1>
<d6p1:Data2>39508</d6p1:Data2>
<d6p1:Data3>18547</d6p1:Data3>
<d6p1:Data4>15897516615889827255</d6p1:Data4>
</d5p1:VersionId>
</d4p1:UgcGameVariant>
</d2p1:MatchInfo>
<d2p1:Outcome>Loss</d2p1:Outcome>
<d2p1:PresentAtEndOfMatch>true</d2p1:PresentAtEndOfMatch>
<d2p1:Rank>5</d2p1:Rank>
</d2p1:PlayerMatchHistoryRecord>
</Results>
<Start xmlns="http://schemas.datacontract.org/2004/07/Microsoft.Studios.Bond.Contract">0</Start>
</MatchHistoryResponse>
Match stats #
Get extensive stats about a given match.
The {matchId}
segment in the URL should be replaced with the match GUID obtained through the match history call.
The call contains duplicate information about team stats in every player entity.
Endpoint #
https://halostats.svc.halowaypoint.com/hi/matches/{matchId}/stats
Required Headers #
Header | Required |
---|---|
x-343-authorization-spartan |
Yes |
343-clearance |
No |
Example Response #
JSON #
{
"MatchId": "MATCH_GUID",
"MatchInfo": {
"StartTime": "2022-01-24T06:02:00.875Z",
"EndTime": "2022-01-24T06:10:43.095Z",
"Duration": "PT8M5.3752833S",
"LifecycleMode": 3,
"GameVariantCategory": 7,
"LevelId": "fc878857-e778-4daf-b0ef-5d826b922f3f",
"MapVariant": {
"AssetKind": 2,
"AssetId": "33c0766c-ef15-48f8-b298-34aba5bff3b4",
"VersionId": "8de91561-b9f7-4669-97ef-42e65fb507a7"
},
"UgcGameVariant": {
"AssetKind": 6,
"AssetId": "4d0f6e15-cc3f-46e0-9d06-22de6311c4cb",
"VersionId": "d6a43d27-9a54-4873-b7b5-fb2c22539fdc"
},
"ClearanceId": "c1178956-c7c8-4860-a3a7-da5caa55faad",
"Playlist": {
"AssetKind": 3,
"AssetId": "0c47c724-3625-4243-a3fd-29b66a2aea6d",
"VersionId": "39422e82-a4d0-4f4a-bce0-8dd839664996"
},
"PlaylistExperience": 5,
"PlaylistMapModePair": {
"AssetKind": 7,
"AssetId": "5f967711-e7ac-4f3c-bc83-a7b4e707486b",
"VersionId": "799b9bce-b5ab-4796-85bd-271849e7cc17"
},
"SeasonId": "Seasons/Season6.json",
"PlayableDuration": "PT7M50.281S",
"TeamsEnabled": true,
"TeamScoringEnabled": true
},
"Teams": [
{
"TeamId": 0,
"Outcome": 2,
"Rank": 1,
"Stats": {
"CoreStats": {
"Score": 2,
"PersonalScore": 6050,
"RoundsWon": 1,
"RoundsLost": 1,
"RoundsTied": 1,
"Kills": 36,
"Deaths": 30,
"Assists": 20,
"KDA": 12.66,
"Suicides": 0,
"Betrayals": 0,
"AverageLifeDuration": "PT0S",
"GrenadeKills": 3,
"HeadshotKills": 2,
"MeleeKills": 17,
"PowerWeaponKills": 0,
"ShotsFired": 1660,
"ShotsHit": 567,
"Accuracy": 34.15,
"DamageDealt": 10349,
"DamageTaken": 10360,
"CalloutAssists": 0,
"VehicleDestroys": 0,
"DriverAssists": 0,
"Hijacks": 0,
"EmpAssists": 0,
"MaxKillingSpree": 6,
"Medals": [
{
"NameId": 548533137,
"Count": 3,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 622331684,
"Count": 3,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 2780740615,
"Count": 1,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 269174970,
"Count": 2,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 2852571933,
"Count": 1,
"TotalPersonalScoreAwarded": 0
}
],
"PersonalScores": [
{
"NameId": 1024030246,
"Count": 24,
"TotalPersonalScoreAwarded": 2400
},
{
"NameId": 638246808,
"Count": 21,
"TotalPersonalScoreAwarded": 1050
},
{
"NameId": 2408971842,
"Count": 12,
"TotalPersonalScoreAwarded": 2400
},
{
"NameId": 3428202435,
"Count": 2,
"TotalPersonalScoreAwarded": 200
}
],
"DeprecatedDamageDealt": 10349.0,
"DeprecatedDamageTaken": 10360.0
},
"BombStats": null,
"CaptureTheFlagStats": null,
"EliminationStats": {
"AlliesRevived": 2,
"EliminationAssists": 7,
"Eliminations": 12,
"EnemyRevivesDenied": 0,
"Executions": 0,
"KillsAsLastPlayerStanding": 0,
"LastPlayersStandingKilled": 2,
"RoundsSurvived": 2,
"TimesRevivedByAlly": 2,
"LivesRemaining": 1,
"EliminationOrder": 0
},
"ExtractionStats": null,
"InfectionStats": null,
"OddballStats": null,
"ZonesStats": null,
"StockpileStats": null
}
},
{
"TeamId": 1,
"Outcome": 3,
"Rank": 2,
"Stats": {
"CoreStats": {
"Score": 1,
"PersonalScore": 4475,
"RoundsWon": 1,
"RoundsLost": 1,
"RoundsTied": 1,
"Kills": 30,
"Deaths": 36,
"Assists": 11,
"KDA": -2.33,
"Suicides": 0,
"Betrayals": 0,
"AverageLifeDuration": "PT0S",
"GrenadeKills": 5,
"HeadshotKills": 1,
"MeleeKills": 8,
"PowerWeaponKills": 0,
"ShotsFired": 1328,
"ShotsHit": 554,
"Accuracy": 41.71,
"DamageDealt": 10293,
"DamageTaken": 10519,
"CalloutAssists": 0,
"VehicleDestroys": 0,
"DriverAssists": 0,
"Hijacks": 0,
"EmpAssists": 0,
"MaxKillingSpree": 4,
"Medals": [
{
"NameId": 2123530881,
"Count": 2,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 622331684,
"Count": 6,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 651256911,
"Count": 2,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 1969067783,
"Count": 1,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 3233952928,
"Count": 1,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 2625820422,
"Count": 1,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 2063152177,
"Count": 1,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 2623698509,
"Count": 1,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 3655682764,
"Count": 1,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 269174970,
"Count": 1,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 2852571933,
"Count": 2,
"TotalPersonalScoreAwarded": 0
}
],
"PersonalScores": [
{
"NameId": 1024030246,
"Count": 23,
"TotalPersonalScoreAwarded": 2300
},
{
"NameId": 638246808,
"Count": 13,
"TotalPersonalScoreAwarded": 650
},
{
"NameId": 2408971842,
"Count": 7,
"TotalPersonalScoreAwarded": 1400
},
{
"NameId": 3428202435,
"Count": 1,
"TotalPersonalScoreAwarded": 100
},
{
"NameId": 2130209372,
"Count": 1,
"TotalPersonalScoreAwarded": 25
}
],
"DeprecatedDamageDealt": 10293.0,
"DeprecatedDamageTaken": 10519.0
},
"BombStats": null,
"CaptureTheFlagStats": null,
"EliminationStats": {
"AlliesRevived": 1,
"EliminationAssists": 1,
"Eliminations": 7,
"EnemyRevivesDenied": 1,
"Executions": 0,
"KillsAsLastPlayerStanding": 5,
"LastPlayersStandingKilled": 1,
"RoundsSurvived": 1,
"TimesRevivedByAlly": 1,
"LivesRemaining": 0,
"EliminationOrder": 0
},
"ExtractionStats": null,
"InfectionStats": null,
"OddballStats": null,
"ZonesStats": null,
"StockpileStats": null
}
}
],
"Players": [
{
"PlayerId": "xuid(PLAYER_XUID)",
"PlayerType": 1,
"BotAttributes": null,
"LastTeamId": 0,
"Outcome": 2,
"Rank": 1,
"ParticipationInfo": {
"FirstJoinedTime": "2022-01-24T06:02:30.097Z",
"LastLeaveTime": null,
"PresentAtBeginning": true,
"JoinedInProgress": true,
"LeftInProgress": false,
"PresentAtCompletion": true,
"TimePlayed": "PT7M50.281S",
"ConfirmedParticipation": null
},
"PlayerTeamStats": [
{
"TeamId": 0,
"Stats": {
"CoreStats": {
"Score": 0,
"PersonalScore": 1700,
"RoundsWon": 1,
"RoundsLost": 1,
"RoundsTied": 1,
"Kills": 10,
"Deaths": 8,
"Assists": 6,
"KDA": 4.0,
"Suicides": 0,
"Betrayals": 0,
"AverageLifeDuration": "PT0S",
"GrenadeKills": 0,
"HeadshotKills": 1,
"MeleeKills": 3,
"PowerWeaponKills": 0,
"ShotsFired": 461,
"ShotsHit": 193,
"Accuracy": 41.86,
"DamageDealt": 3217,
"DamageTaken": 2851,
"CalloutAssists": 0,
"VehicleDestroys": 0,
"DriverAssists": 0,
"Hijacks": 0,
"EmpAssists": 0,
"MaxKillingSpree": 3,
"Medals": [
{
"NameId": 2852571933,
"Count": 1,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 622331684,
"Count": 1,
"TotalPersonalScoreAwarded": 0
}
],
"PersonalScores": [
{
"NameId": 638246808,
"Count": 6,
"TotalPersonalScoreAwarded": 300
},
{
"NameId": 2408971842,
"Count": 4,
"TotalPersonalScoreAwarded": 800
},
{
"NameId": 1024030246,
"Count": 6,
"TotalPersonalScoreAwarded": 600
}
],
"DeprecatedDamageDealt": 3217.0,
"DeprecatedDamageTaken": 2851.0
},
"BombStats": null,
"CaptureTheFlagStats": null,
"EliminationStats": {
"AlliesRevived": 0,
"EliminationAssists": 2,
"Eliminations": 4,
"EnemyRevivesDenied": 0,
"Executions": 0,
"KillsAsLastPlayerStanding": 0,
"LastPlayersStandingKilled": 1,
"RoundsSurvived": 2,
"TimesRevivedByAlly": 1,
"LivesRemaining": null,
"EliminationOrder": 0
},
"ExtractionStats": null,
"InfectionStats": null,
"OddballStats": null,
"ZonesStats": null,
"StockpileStats": null
}
}
]
},
{
"PlayerId": "xuid(PLAYER_XUID)",
"PlayerType": 1,
"BotAttributes": null,
"LastTeamId": 1,
"Outcome": 3,
"Rank": 5,
"ParticipationInfo": {
"FirstJoinedTime": "2022-01-24T06:02:37.719Z",
"LastLeaveTime": null,
"PresentAtBeginning": true,
"JoinedInProgress": false,
"LeftInProgress": false,
"PresentAtCompletion": true,
"TimePlayed": "PT7M50.281S",
"ConfirmedParticipation": null
},
"PlayerTeamStats": [
{
"TeamId": 1,
"Stats": {
"CoreStats": {
"Score": 0,
"PersonalScore": 700,
"RoundsWon": 1,
"RoundsLost": 1,
"RoundsTied": 1,
"Kills": 5,
"Deaths": 7,
"Assists": 4,
"KDA": -0.66,
"Suicides": 0,
"Betrayals": 0,
"AverageLifeDuration": "PT0S",
"GrenadeKills": 1,
"HeadshotKills": 1,
"MeleeKills": 0,
"PowerWeaponKills": 0,
"ShotsFired": 209,
"ShotsHit": 73,
"Accuracy": 34.92,
"DamageDealt": 2229,
"DamageTaken": 2006,
"CalloutAssists": 0,
"VehicleDestroys": 0,
"DriverAssists": 0,
"Hijacks": 0,
"EmpAssists": 0,
"MaxKillingSpree": 2,
"Medals": [
{
"NameId": 3655682764,
"Count": 1,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 622331684,
"Count": 1,
"TotalPersonalScoreAwarded": 0
}
],
"PersonalScores": [
{
"NameId": 1024030246,
"Count": 5,
"TotalPersonalScoreAwarded": 500
},
{
"NameId": 638246808,
"Count": 4,
"TotalPersonalScoreAwarded": 200
}
],
"DeprecatedDamageDealt": 2229.0,
"DeprecatedDamageTaken": 2006.0
},
"BombStats": null,
"CaptureTheFlagStats": null,
"EliminationStats": {
"AlliesRevived": 0,
"EliminationAssists": 1,
"Eliminations": 0,
"EnemyRevivesDenied": 0,
"Executions": 0,
"KillsAsLastPlayerStanding": 0,
"LastPlayersStandingKilled": 0,
"RoundsSurvived": 0,
"TimesRevivedByAlly": 0,
"LivesRemaining": null,
"EliminationOrder": 0
},
"ExtractionStats": null,
"InfectionStats": null,
"OddballStats": null,
"ZonesStats": null,
"StockpileStats": null
}
}
]
},
{
"PlayerId": "xuid(PLAYER_XUID)",
"PlayerType": 1,
"BotAttributes": null,
"LastTeamId": 1,
"Outcome": 3,
"Rank": 5,
"ParticipationInfo": {
"FirstJoinedTime": "2022-01-24T06:02:37.719Z",
"LastLeaveTime": null,
"PresentAtBeginning": true,
"JoinedInProgress": false,
"LeftInProgress": false,
"PresentAtCompletion": true,
"TimePlayed": "PT7M50.281S",
"ConfirmedParticipation": null
},
"PlayerTeamStats": [
{
"TeamId": 1,
"Stats": {
"CoreStats": {
"Score": 0,
"PersonalScore": 1150,
"RoundsWon": 1,
"RoundsLost": 1,
"RoundsTied": 1,
"Kills": 7,
"Deaths": 10,
"Assists": 3,
"KDA": -2.0,
"Suicides": 0,
"Betrayals": 0,
"AverageLifeDuration": "PT0S",
"GrenadeKills": 0,
"HeadshotKills": 0,
"MeleeKills": 2,
"PowerWeaponKills": 0,
"ShotsFired": 456,
"ShotsHit": 191,
"Accuracy": 41.88,
"DamageDealt": 2609,
"DamageTaken": 3437,
"CalloutAssists": 0,
"VehicleDestroys": 0,
"DriverAssists": 0,
"Hijacks": 0,
"EmpAssists": 0,
"MaxKillingSpree": 2,
"Medals": [
{
"NameId": 2852571933,
"Count": 1,
"TotalPersonalScoreAwarded": 0
}
],
"PersonalScores": [
{
"NameId": 1024030246,
"Count": 5,
"TotalPersonalScoreAwarded": 500
},
{
"NameId": 2408971842,
"Count": 2,
"TotalPersonalScoreAwarded": 400
},
{
"NameId": 3428202435,
"Count": 1,
"TotalPersonalScoreAwarded": 100
},
{
"NameId": 638246808,
"Count": 3,
"TotalPersonalScoreAwarded": 150
}
],
"DeprecatedDamageDealt": 2609.0,
"DeprecatedDamageTaken": 3437.0
},
"BombStats": null,
"CaptureTheFlagStats": null,
"EliminationStats": {
"AlliesRevived": 1,
"EliminationAssists": 0,
"Eliminations": 2,
"EnemyRevivesDenied": 0,
"Executions": 0,
"KillsAsLastPlayerStanding": 1,
"LastPlayersStandingKilled": 0,
"RoundsSurvived": 0,
"TimesRevivedByAlly": 0,
"LivesRemaining": null,
"EliminationOrder": 0
},
"ExtractionStats": null,
"InfectionStats": null,
"OddballStats": null,
"ZonesStats": null,
"StockpileStats": null
}
}
]
},
{
"PlayerId": "xuid(PLAYER_XUID)",
"PlayerType": 1,
"BotAttributes": null,
"LastTeamId": 1,
"Outcome": 4,
"Rank": 9,
"ParticipationInfo": {
"FirstJoinedTime": "2022-01-24T06:02:37.719Z",
"LastLeaveTime": "2022-01-24T06:05:38.353Z",
"PresentAtBeginning": true,
"JoinedInProgress": false,
"LeftInProgress": true,
"PresentAtCompletion": false,
"TimePlayed": "PT3M0.6334974S",
"ConfirmedParticipation": null
},
"PlayerTeamStats": [
{
"TeamId": 1,
"Stats": {
"CoreStats": {
"Score": 0,
"PersonalScore": 150,
"RoundsWon": 0,
"RoundsLost": 0,
"RoundsTied": 0,
"Kills": 1,
"Deaths": 4,
"Assists": 1,
"KDA": -2.66,
"Suicides": 0,
"Betrayals": 0,
"AverageLifeDuration": "PT0S",
"GrenadeKills": 0,
"HeadshotKills": 0,
"MeleeKills": 0,
"PowerWeaponKills": 0,
"ShotsFired": 51,
"ShotsHit": 18,
"Accuracy": 35.29,
"DamageDealt": 370,
"DamageTaken": 892,
"CalloutAssists": 0,
"VehicleDestroys": 0,
"DriverAssists": 0,
"Hijacks": 0,
"EmpAssists": 0,
"MaxKillingSpree": 1,
"Medals": [],
"PersonalScores": [
{
"NameId": 638246808,
"Count": 1,
"TotalPersonalScoreAwarded": 50
},
{
"NameId": 1024030246,
"Count": 1,
"TotalPersonalScoreAwarded": 100
}
],
"DeprecatedDamageDealt": 370.0,
"DeprecatedDamageTaken": 892.0
},
"BombStats": null,
"CaptureTheFlagStats": null,
"EliminationStats": {
"AlliesRevived": 0,
"EliminationAssists": 0,
"Eliminations": 0,
"EnemyRevivesDenied": 0,
"Executions": 0,
"KillsAsLastPlayerStanding": 0,
"LastPlayersStandingKilled": 0,
"RoundsSurvived": 0,
"TimesRevivedByAlly": 0,
"LivesRemaining": null,
"EliminationOrder": 0
},
"ExtractionStats": null,
"InfectionStats": null,
"OddballStats": null,
"ZonesStats": null,
"StockpileStats": null
}
}
]
},
{
"PlayerId": "xuid(PLAYER_XUID)",
"PlayerType": 1,
"BotAttributes": null,
"LastTeamId": 0,
"Outcome": 2,
"Rank": 1,
"ParticipationInfo": {
"FirstJoinedTime": "2022-01-24T06:02:37.719Z",
"LastLeaveTime": null,
"PresentAtBeginning": true,
"JoinedInProgress": false,
"LeftInProgress": false,
"PresentAtCompletion": true,
"TimePlayed": "PT7M50.281S",
"ConfirmedParticipation": null
},
"PlayerTeamStats": [
{
"TeamId": 0,
"Stats": {
"CoreStats": {
"Score": 0,
"PersonalScore": 1000,
"RoundsWon": 1,
"RoundsLost": 1,
"RoundsTied": 1,
"Kills": 6,
"Deaths": 9,
"Assists": 4,
"KDA": -1.66,
"Suicides": 0,
"Betrayals": 0,
"AverageLifeDuration": "PT0S",
"GrenadeKills": 2,
"HeadshotKills": 0,
"MeleeKills": 2,
"PowerWeaponKills": 0,
"ShotsFired": 365,
"ShotsHit": 95,
"Accuracy": 26.02,
"DamageDealt": 1752,
"DamageTaken": 2523,
"CalloutAssists": 0,
"VehicleDestroys": 0,
"DriverAssists": 0,
"Hijacks": 0,
"EmpAssists": 0,
"MaxKillingSpree": 1,
"Medals": [
{
"NameId": 548533137,
"Count": 1,
"TotalPersonalScoreAwarded": 0
}
],
"PersonalScores": [
{
"NameId": 638246808,
"Count": 4,
"TotalPersonalScoreAwarded": 200
},
{
"NameId": 1024030246,
"Count": 4,
"TotalPersonalScoreAwarded": 400
},
{
"NameId": 2408971842,
"Count": 2,
"TotalPersonalScoreAwarded": 400
}
],
"DeprecatedDamageDealt": 1752.0,
"DeprecatedDamageTaken": 2523.0
},
"BombStats": null,
"CaptureTheFlagStats": null,
"EliminationStats": {
"AlliesRevived": 0,
"EliminationAssists": 1,
"Eliminations": 2,
"EnemyRevivesDenied": 0,
"Executions": 0,
"KillsAsLastPlayerStanding": 0,
"LastPlayersStandingKilled": 1,
"RoundsSurvived": 1,
"TimesRevivedByAlly": 1,
"LivesRemaining": null,
"EliminationOrder": 0
},
"ExtractionStats": null,
"InfectionStats": null,
"OddballStats": null,
"ZonesStats": null,
"StockpileStats": null
}
}
]
},
{
"PlayerId": "xuid(PLAYER_XUID)",
"PlayerType": 1,
"BotAttributes": null,
"LastTeamId": 1,
"Outcome": 3,
"Rank": 5,
"ParticipationInfo": {
"FirstJoinedTime": "2022-01-24T06:02:37.719Z",
"LastLeaveTime": null,
"PresentAtBeginning": true,
"JoinedInProgress": false,
"LeftInProgress": false,
"PresentAtCompletion": true,
"TimePlayed": "PT7M50.281S",
"ConfirmedParticipation": null
},
"PlayerTeamStats": [
{
"TeamId": 1,
"Stats": {
"CoreStats": {
"Score": 0,
"PersonalScore": 2275,
"RoundsWon": 1,
"RoundsLost": 1,
"RoundsTied": 1,
"Kills": 16,
"Deaths": 8,
"Assists": 3,
"KDA": 9.0,
"Suicides": 0,
"Betrayals": 0,
"AverageLifeDuration": "PT0S",
"GrenadeKills": 3,
"HeadshotKills": 0,
"MeleeKills": 6,
"PowerWeaponKills": 0,
"ShotsFired": 392,
"ShotsHit": 184,
"Accuracy": 46.93,
"DamageDealt": 3880,
"DamageTaken": 2411,
"CalloutAssists": 0,
"VehicleDestroys": 0,
"DriverAssists": 0,
"Hijacks": 0,
"EmpAssists": 0,
"MaxKillingSpree": 4,
"Medals": [
{
"NameId": 2123530881,
"Count": 2,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 622331684,
"Count": 5,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 651256911,
"Count": 2,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 1969067783,
"Count": 1,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 3233952928,
"Count": 1,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 2625820422,
"Count": 1,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 2063152177,
"Count": 1,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 2623698509,
"Count": 1,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 269174970,
"Count": 1,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 2852571933,
"Count": 1,
"TotalPersonalScoreAwarded": 0
}
],
"PersonalScores": [
{
"NameId": 1024030246,
"Count": 11,
"TotalPersonalScoreAwarded": 1100
},
{
"NameId": 638246808,
"Count": 3,
"TotalPersonalScoreAwarded": 150
},
{
"NameId": 2408971842,
"Count": 5,
"TotalPersonalScoreAwarded": 1000
},
{
"NameId": 2130209372,
"Count": 1,
"TotalPersonalScoreAwarded": 25
}
],
"DeprecatedDamageDealt": 3880.0,
"DeprecatedDamageTaken": 2411.0
},
"BombStats": null,
"CaptureTheFlagStats": null,
"EliminationStats": {
"AlliesRevived": 0,
"EliminationAssists": 0,
"Eliminations": 5,
"EnemyRevivesDenied": 1,
"Executions": 0,
"KillsAsLastPlayerStanding": 4,
"LastPlayersStandingKilled": 1,
"RoundsSurvived": 1,
"TimesRevivedByAlly": 1,
"LivesRemaining": null,
"EliminationOrder": 0
},
"ExtractionStats": null,
"InfectionStats": null,
"OddballStats": null,
"ZonesStats": null,
"StockpileStats": null
}
}
]
},
{
"PlayerId": "xuid(PLAYER_XUID)",
"PlayerType": 1,
"BotAttributes": null,
"LastTeamId": 0,
"Outcome": 2,
"Rank": 1,
"ParticipationInfo": {
"FirstJoinedTime": "2022-01-24T06:02:37.719Z",
"LastLeaveTime": null,
"PresentAtBeginning": true,
"JoinedInProgress": false,
"LeftInProgress": false,
"PresentAtCompletion": true,
"TimePlayed": "PT7M50.281S",
"ConfirmedParticipation": null
},
"PlayerTeamStats": [
{
"TeamId": 0,
"Stats": {
"CoreStats": {
"Score": 0,
"PersonalScore": 1600,
"RoundsWon": 1,
"RoundsLost": 1,
"RoundsTied": 1,
"Kills": 11,
"Deaths": 6,
"Assists": 4,
"KDA": 6.33,
"Suicides": 0,
"Betrayals": 0,
"AverageLifeDuration": "PT0S",
"GrenadeKills": 1,
"HeadshotKills": 0,
"MeleeKills": 7,
"PowerWeaponKills": 0,
"ShotsFired": 328,
"ShotsHit": 112,
"Accuracy": 34.14,
"DamageDealt": 2726,
"DamageTaken": 2554,
"CalloutAssists": 0,
"VehicleDestroys": 0,
"DriverAssists": 0,
"Hijacks": 0,
"EmpAssists": 0,
"MaxKillingSpree": 6,
"Medals": [
{
"NameId": 548533137,
"Count": 1,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 622331684,
"Count": 2,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 2780740615,
"Count": 1,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 269174970,
"Count": 1,
"TotalPersonalScoreAwarded": 0
}
],
"PersonalScores": [
{
"NameId": 1024030246,
"Count": 8,
"TotalPersonalScoreAwarded": 800
},
{
"NameId": 638246808,
"Count": 4,
"TotalPersonalScoreAwarded": 200
},
{
"NameId": 2408971842,
"Count": 3,
"TotalPersonalScoreAwarded": 600
}
],
"DeprecatedDamageDealt": 2726.0,
"DeprecatedDamageTaken": 2554.0
},
"BombStats": null,
"CaptureTheFlagStats": null,
"EliminationStats": {
"AlliesRevived": 0,
"EliminationAssists": 2,
"Eliminations": 3,
"EnemyRevivesDenied": 0,
"Executions": 0,
"KillsAsLastPlayerStanding": 0,
"LastPlayersStandingKilled": 0,
"RoundsSurvived": 2,
"TimesRevivedByAlly": 0,
"LivesRemaining": null,
"EliminationOrder": 0
},
"ExtractionStats": null,
"InfectionStats": null,
"OddballStats": null,
"ZonesStats": null,
"StockpileStats": null
}
}
]
},
{
"PlayerId": "xuid(PLAYER_XUID)",
"PlayerType": 1,
"BotAttributes": null,
"LastTeamId": 0,
"Outcome": 2,
"Rank": 1,
"ParticipationInfo": {
"FirstJoinedTime": "2022-01-24T06:02:37.719Z",
"LastLeaveTime": null,
"PresentAtBeginning": true,
"JoinedInProgress": false,
"LeftInProgress": false,
"PresentAtCompletion": true,
"TimePlayed": "PT7M50.281S",
"ConfirmedParticipation": null
},
"PlayerTeamStats": [
{
"TeamId": 0,
"Stats": {
"CoreStats": {
"Score": 0,
"PersonalScore": 1750,
"RoundsWon": 1,
"RoundsLost": 1,
"RoundsTied": 1,
"Kills": 9,
"Deaths": 7,
"Assists": 7,
"KDA": 4.33,
"Suicides": 0,
"Betrayals": 0,
"AverageLifeDuration": "PT0S",
"GrenadeKills": 0,
"HeadshotKills": 1,
"MeleeKills": 5,
"PowerWeaponKills": 0,
"ShotsFired": 506,
"ShotsHit": 167,
"Accuracy": 33.0,
"DamageDealt": 2654,
"DamageTaken": 2432,
"CalloutAssists": 0,
"VehicleDestroys": 0,
"DriverAssists": 0,
"Hijacks": 0,
"EmpAssists": 0,
"MaxKillingSpree": 4,
"Medals": [
{
"NameId": 548533137,
"Count": 1,
"TotalPersonalScoreAwarded": 0
},
{
"NameId": 269174970,
"Count": 1,
"TotalPersonalScoreAwarded": 0
}
],
"PersonalScores": [
{
"NameId": 638246808,
"Count": 7,
"TotalPersonalScoreAwarded": 350
},
{
"NameId": 1024030246,
"Count": 6,
"TotalPersonalScoreAwarded": 600
},
{
"NameId": 3428202435,
"Count": 2,
"TotalPersonalScoreAwarded": 200
},
{
"NameId": 2408971842,
"Count": 3,
"TotalPersonalScoreAwarded": 600
}
],
"DeprecatedDamageDealt": 2654.0,
"DeprecatedDamageTaken": 2432.0
},
"BombStats": null,
"CaptureTheFlagStats": null,
"EliminationStats": {
"AlliesRevived": 2,
"EliminationAssists": 2,
"Eliminations": 3,
"EnemyRevivesDenied": 0,
"Executions": 0,
"KillsAsLastPlayerStanding": 0,
"LastPlayersStandingKilled": 0,
"RoundsSurvived": 2,
"TimesRevivedByAlly": 0,
"LivesRemaining": null,
"EliminationOrder": 0
},
"ExtractionStats": null,
"InfectionStats": null,
"OddballStats": null,
"ZonesStats": null,
"StockpileStats": null
}
}
]
},
{
"PlayerId": "bid(32.0)",
"PlayerType": 2,
"BotAttributes": {
"Difficulty": 1
},
"LastTeamId": 0,
"Outcome": 4,
"Rank": 9,
"ParticipationInfo": {
"FirstJoinedTime": "2022-01-24T06:02:40.741Z",
"LastLeaveTime": null,
"PresentAtBeginning": false,
"JoinedInProgress": true,
"LeftInProgress": false,
"PresentAtCompletion": true,
"TimePlayed": "PT7M47.2608785S",
"ConfirmedParticipation": null
},
"PlayerTeamStats": [
{
"TeamId": 0,
"Stats": {
"CoreStats": {
"Score": 0,
"PersonalScore": 0,
"RoundsWon": 0,
"RoundsLost": 0,
"RoundsTied": 0,
"Kills": 0,
"Deaths": 0,
"Assists": 0,
"KDA": 0.0,
"Suicides": 0,
"Betrayals": 0,
"AverageLifeDuration": "PT0S",
"GrenadeKills": 0,
"HeadshotKills": 0,
"MeleeKills": 0,
"PowerWeaponKills": 0,
"ShotsFired": 0,
"ShotsHit": 0,
"Accuracy": 0.0,
"DamageDealt": 0,
"DamageTaken": 0,
"CalloutAssists": 0,
"VehicleDestroys": 0,
"DriverAssists": 0,
"Hijacks": 0,
"EmpAssists": 0,
"MaxKillingSpree": 0,
"Medals": [],
"PersonalScores": [],
"DeprecatedDamageDealt": 0.0,
"DeprecatedDamageTaken": 0.0
},
"BombStats": null,
"CaptureTheFlagStats": null,
"EliminationStats": {
"AlliesRevived": 0,
"EliminationAssists": 0,
"Eliminations": 0,
"EnemyRevivesDenied": 0,
"Executions": 0,
"KillsAsLastPlayerStanding": 0,
"LastPlayersStandingKilled": 0,
"RoundsSurvived": 0,
"TimesRevivedByAlly": 0,
"LivesRemaining": null,
"EliminationOrder": 0
},
"ExtractionStats": null,
"InfectionStats": null,
"OddballStats": null,
"ZonesStats": null,
"StockpileStats": null
}
}
]
},
{
"PlayerId": "xuid(PLAYER_XUID)",
"PlayerType": 1,
"BotAttributes": null,
"LastTeamId": 1,
"Outcome": 3,
"Rank": 8,
"ParticipationInfo": {
"FirstJoinedTime": "2022-01-24T06:05:39.286Z",
"LastLeaveTime": null,
"PresentAtBeginning": false,
"JoinedInProgress": true,
"LeftInProgress": false,
"PresentAtCompletion": true,
"TimePlayed": "PT4M48.7159368S",
"ConfirmedParticipation": null
},
"PlayerTeamStats": [
{
"TeamId": 1,
"Stats": {
"CoreStats": {
"Score": 0,
"PersonalScore": 200,
"RoundsWon": 0,
"RoundsLost": 1,
"RoundsTied": 1,
"Kills": 1,
"Deaths": 7,
"Assists": 2,
"KDA": -5.33,
"Suicides": 0,
"Betrayals": 0,
"AverageLifeDuration": "PT0S",
"GrenadeKills": 1,
"HeadshotKills": 0,
"MeleeKills": 0,
"PowerWeaponKills": 0,
"ShotsFired": 220,
"ShotsHit": 88,
"Accuracy": 40.0,
"DamageDealt": 1205,
"DamageTaken": 1773,
"CalloutAssists": 0,
"VehicleDestroys": 0,
"DriverAssists": 0,
"Hijacks": 0,
"EmpAssists": 0,
"MaxKillingSpree": 1,
"Medals": [],
"PersonalScores": [
{
"NameId": 638246808,
"Count": 2,
"TotalPersonalScoreAwarded": 100
},
{
"NameId": 1024030246,
"Count": 1,
"TotalPersonalScoreAwarded": 100
}
],
"DeprecatedDamageDealt": 1205.0,
"DeprecatedDamageTaken": 1773.0
},
"BombStats": null,
"CaptureTheFlagStats": null,
"EliminationStats": {
"AlliesRevived": 0,
"EliminationAssists": 0,
"Eliminations": 0,
"EnemyRevivesDenied": 0,
"Executions": 0,
"KillsAsLastPlayerStanding": 0,
"LastPlayersStandingKilled": 0,
"RoundsSurvived": 0,
"TimesRevivedByAlly": 0,
"LivesRemaining": null,
"EliminationOrder": 0
},
"ExtractionStats": null,
"InfectionStats": null,
"OddballStats": null,
"ZonesStats": null,
"StockpileStats": null
}
}
]
},
{
"PlayerId": "bid(21.0)",
"PlayerType": 2,
"BotAttributes": {
"Difficulty": 1
},
"LastTeamId": 1,
"Outcome": 4,
"Rank": 9,
"ParticipationInfo": {
"FirstJoinedTime": "2022-01-24T06:06:01.609Z",
"LastLeaveTime": null,
"PresentAtBeginning": false,
"JoinedInProgress": true,
"LeftInProgress": false,
"PresentAtCompletion": true,
"TimePlayed": "PT4M33.9431256S",
"ConfirmedParticipation": null
},
"PlayerTeamStats": [
{
"TeamId": 1,
"Stats": {
"CoreStats": {
"Score": 0,
"PersonalScore": 0,
"RoundsWon": 0,
"RoundsLost": 0,
"RoundsTied": 0,
"Kills": 0,
"Deaths": 0,
"Assists": 0,
"KDA": 0.0,
"Suicides": 0,
"Betrayals": 0,
"AverageLifeDuration": "PT0S",
"GrenadeKills": 0,
"HeadshotKills": 0,
"MeleeKills": 0,
"PowerWeaponKills": 0,
"ShotsFired": 0,
"ShotsHit": 0,
"Accuracy": 0.0,
"DamageDealt": 0,
"DamageTaken": 0,
"CalloutAssists": 0,
"VehicleDestroys": 0,
"DriverAssists": 0,
"Hijacks": 0,
"EmpAssists": 0,
"MaxKillingSpree": 0,
"Medals": [],
"PersonalScores": [],
"DeprecatedDamageDealt": 0.0,
"DeprecatedDamageTaken": 0.0
},
"BombStats": null,
"CaptureTheFlagStats": null,
"EliminationStats": {
"AlliesRevived": 0,
"EliminationAssists": 0,
"Eliminations": 0,
"EnemyRevivesDenied": 0,
"Executions": 0,
"KillsAsLastPlayerStanding": 0,
"LastPlayersStandingKilled": 0,
"RoundsSurvived": 0,
"TimesRevivedByAlly": 0,
"LivesRemaining": null,
"EliminationOrder": 0
},
"ExtractionStats": null,
"InfectionStats": null,
"OddballStats": null,
"ZonesStats": null,
"StockpileStats": null
}
}
]
},
{
"PlayerId": "bid(43.0)",
"PlayerType": 2,
"BotAttributes": {
"Difficulty": 1
},
"LastTeamId": 1,
"Outcome": 4,
"Rank": 9,
"ParticipationInfo": {
"FirstJoinedTime": "2022-01-24T06:08:41.895Z",
"LastLeaveTime": null,
"PresentAtBeginning": false,
"JoinedInProgress": true,
"LeftInProgress": false,
"PresentAtCompletion": true,
"TimePlayed": "PT2M1.2002604S",
"ConfirmedParticipation": null
},
"PlayerTeamStats": [
{
"TeamId": 1,
"Stats": {
"CoreStats": {
"Score": 0,
"PersonalScore": 0,
"RoundsWon": 0,
"RoundsLost": 0,
"RoundsTied": 0,
"Kills": 0,
"Deaths": 0,
"Assists": 0,
"KDA": 0.0,
"Suicides": 0,
"Betrayals": 0,
"AverageLifeDuration": "PT0S",
"GrenadeKills": 0,
"HeadshotKills": 0,
"MeleeKills": 0,
"PowerWeaponKills": 0,
"ShotsFired": 0,
"ShotsHit": 0,
"Accuracy": 0.0,
"DamageDealt": 0,
"DamageTaken": 0,
"CalloutAssists": 0,
"VehicleDestroys": 0,
"DriverAssists": 0,
"Hijacks": 0,
"EmpAssists": 0,
"MaxKillingSpree": 0,
"Medals": [],
"PersonalScores": [],
"DeprecatedDamageDealt": 0.0,
"DeprecatedDamageTaken": 0.0
},
"BombStats": null,
"CaptureTheFlagStats": null,
"EliminationStats": {
"AlliesRevived": 0,
"EliminationAssists": 0,
"Eliminations": 0,
"EnemyRevivesDenied": 0,
"Executions": 0,
"KillsAsLastPlayerStanding": 0,
"LastPlayersStandingKilled": 0,
"RoundsSurvived": 0,
"TimesRevivedByAlly": 0,
"LivesRemaining": null,
"EliminationOrder": 0
},
"ExtractionStats": null,
"InfectionStats": null,
"OddballStats": null,
"ZonesStats": null,
"StockpileStats": null
}
}
]
}
]
}
XML #
<MatchStats xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Microsoft.Halo.HaloStats.Bond.HaloInfinite.Match.Stats">
<MatchId xmlns:d2p1="http://schemas.datacontract.org/2004/07/Bond">
<d4p1:Data1>GUID_PART_A</d4p1:Data1>
<d4p1:Data2>GUID_PART_B</d4p1:Data2>
<d4p1:Data3>GUID_PART_C</d4p1:Data3>
<d4p1:Data4>GUID_PART_D</d4p1:Data4>
</MatchId>
<MatchInfo xmlns:d2p1="http://schemas.datacontract.org/2004/07/Microsoft.Halo.HaloStats.Bond.HaloInfinite">
<d2p1:ClearanceId xmlns:d3p1="http://schemas.datacontract.org/2004/07/Bond">
<d3p1:Data1>3239545174</d3p1:Data1>
<d3p1:Data2>51144</d3p1:Data2>
<d3p1:Data3>18528</d3p1:Data3>
<d3p1:Data4>12536426702929831843</d3p1:Data4>
</d2p1:ClearanceId>
<d2p1:Duration>PT8M5.3752833S</d2p1:Duration>
<d2p1:EndTime>2022-01-24T06:10:43.095Z</d2p1:EndTime>
<d2p1:GameVariantCategory>MultiplayerAttrition</d2p1:GameVariantCategory>
<d2p1:LevelId xmlns:d3p1="http://schemas.datacontract.org/2004/07/Bond">
<d3p1:Data1>4236740695</d3p1:Data1>
<d3p1:Data2>59256</d3p1:Data2>
<d3p1:Data3>19887</d3p1:Data3>
<d3p1:Data4>4553018738741211056</d3p1:Data4>
</d2p1:LevelId>
<d2p1:LifecycleMode>Matchmade</d2p1:LifecycleMode>
<d2p1:MapVariant xmlns:d3p1="http://schemas.datacontract.org/2004/07/Microsoft.Halo.InfiniteUGC.Bond">
<d3p1:AssetId xmlns:d4p1="http://schemas.datacontract.org/2004/07/Bond">
<d4p1:Data1>868251244</d4p1:Data1>
<d4p1:Data2>61205</d4p1:Data2>
<d4p1:Data3>18680</d4p1:Data3>
<d4p1:Data4>13038976064430577842</d4p1:Data4>
</d3p1:AssetId>
<d3p1:AssetKind>Map</d3p1:AssetKind>
<d3p1:VersionId xmlns:d4p1="http://schemas.datacontract.org/2004/07/Bond">
<d4p1:Data1>2380862817</d4p1:Data1>
<d4p1:Data2>47607</d4p1:Data2>
<d4p1:Data3>18025</d4p1:Data3>
<d4p1:Data4>12035787952660606871</d4p1:Data4>
</d3p1:VersionId>
</d2p1:MapVariant>
<d2p1:PlayableDuration>PT7M50.281S</d2p1:PlayableDuration>
<d2p1:Playlist xmlns:d3p1="http://schemas.datacontract.org/2004/07/Microsoft.Halo.InfiniteUGC.Bond">
<d3p1:AssetId xmlns:d4p1="http://schemas.datacontract.org/2004/07/Bond">
<d4p1:Data1>206030628</d4p1:Data1>
<d4p1:Data2>13861</d4p1:Data2>
<d4p1:Data3>16963</d4p1:Data3>
<d4p1:Data4>7920189532495543715</d4p1:Data4>
</d3p1:AssetId>
<d3p1:AssetKind>Playlist</d3p1:AssetKind>
<d3p1:VersionId xmlns:d4p1="http://schemas.datacontract.org/2004/07/Bond">
<d4p1:Data1>960638594</d4p1:Data1>
<d4p1:Data2>42192</d4p1:Data2>
<d4p1:Data3>20298</d4p1:Data3>
<d4p1:Data4>10829299177621414076</d4p1:Data4>
</d3p1:VersionId>
</d2p1:Playlist>
<d2p1:PlaylistExperience>Featured</d2p1:PlaylistExperience>
<d2p1:PlaylistMapModePair xmlns:d3p1="http://schemas.datacontract.org/2004/07/Microsoft.Halo.InfiniteUGC.Bond">
<d3p1:AssetId xmlns:d4p1="http://schemas.datacontract.org/2004/07/Bond">
<d4p1:Data1>1603696401</d4p1:Data1>
<d4p1:Data2>59308</d4p1:Data2>
<d4p1:Data3>20284</d4p1:Data3>
<d4p1:Data4>7730437452131173308</d4p1:Data4>
</d3p1:AssetId>
<d3p1:AssetKind>MapModePair</d3p1:AssetKind>
<d3p1:VersionId xmlns:d4p1="http://schemas.datacontract.org/2004/07/Bond">
<d4p1:Data1>2040241102</d4p1:Data1>
<d4p1:Data2>46507</d4p1:Data2>
<d4p1:Data3>18326</d4p1:Data3>
<d4p1:Data4>1714999859245202821</d4p1:Data4>
</d3p1:VersionId>
</d2p1:PlaylistMapModePair>
<d2p1:SeasonId>Seasons/Season6.json</d2p1:SeasonId>
<d2p1:StartTime>2022-01-24T06:02:00.875Z</d2p1:StartTime>
<d2p1:TeamScoringEnabled>true</d2p1:TeamScoringEnabled>
<d2p1:TeamsEnabled>true</d2p1:TeamsEnabled>
<d2p1:UgcGameVariant xmlns:d3p1="http://schemas.datacontract.org/2004/07/Microsoft.Halo.InfiniteUGC.Bond">
<d3p1:AssetId xmlns:d4p1="http://schemas.datacontract.org/2004/07/Bond">
<d4p1:Data1>1292856853</d4p1:Data1>
<d4p1:Data2>52287</d4p1:Data2>
<d4p1:Data3>18144</d4p1:Data3>
<d4p1:Data4>14682879805760865949</d4p1:Data4>
</d3p1:AssetId>
<d3p1:AssetKind>UgcGameVariant</d3p1:AssetKind>
<d3p1:VersionId xmlns:d4p1="http://schemas.datacontract.org/2004/07/Bond">
<d4p1:Data1>3601087783</d4p1:Data1>
<d4p1:Data2>39508</d4p1:Data2>
<d4p1:Data3>18547</d4p1:Data3>
<d4p1:Data4>15897516615889827255</d4p1:Data4>
</d3p1:VersionId>
</d2p1:UgcGameVariant>
</MatchInfo>
<Players>
<PlayerStats>
<BotAttributes i:nil="true" />
<LastTeamId>0</LastTeamId>
<Outcome>Win</Outcome>
<ParticipationInfo>
<ConfirmedParticipation i:nil="true" />
<FirstJoinedTime>2022-01-24T06:02:30.097Z</FirstJoinedTime>
<JoinedInProgress>true</JoinedInProgress>
<LastLeaveTime i:nil="true" />
<LeftInProgress>false</LeftInProgress>
<PresentAtBeginning>true</PresentAtBeginning>
<PresentAtCompletion>true</PresentAtCompletion>
<TimePlayed>PT7M50.281S</TimePlayed>
</ParticipationInfo>
<PlayerId>xuid(PLAYER_XUID)</PlayerId>
<PlayerTeamStats>
<PlayerTeamStats>
<Stats>
<BombStats i:nil="true" />
<CaptureTheFlagStats i:nil="true" />
<CoreStats>
<Accuracy>41.86</Accuracy>
<Assists>6</Assists>
<AverageLifeDuration>PT0S</AverageLifeDuration>
<Betrayals>0</Betrayals>
<CalloutAssists>0</CalloutAssists>
<DamageDealt>3217</DamageDealt>
<DamageTaken>2851</DamageTaken>
<Deaths>8</Deaths>
<DeprecatedDamageDealt>3217</DeprecatedDamageDealt>
<DeprecatedDamageTaken>2851</DeprecatedDamageTaken>
<DriverAssists>0</DriverAssists>
<EmpAssists>0</EmpAssists>
<GrenadeKills>0</GrenadeKills>
<HeadshotKills>1</HeadshotKills>
<Hijacks>0</Hijacks>
<KDA>4</KDA>
<Kills>10</Kills>
<MaxKillingSpree>3</MaxKillingSpree>
<Medals>
<MatchResultMedalStats>
<Count>1</Count>
<NameId>2852571933</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>1</Count>
<NameId>622331684</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
</Medals>
<MeleeKills>3</MeleeKills>
<PersonalScore>1700</PersonalScore>
<PersonalScores>
<MatchResultPersonalScoreStats>
<Count>6</Count>
<NameId>638246808</NameId>
<TotalPersonalScoreAwarded>300</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
<MatchResultPersonalScoreStats>
<Count>4</Count>
<NameId>2408971842</NameId>
<TotalPersonalScoreAwarded>800</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
<MatchResultPersonalScoreStats>
<Count>6</Count>
<NameId>1024030246</NameId>
<TotalPersonalScoreAwarded>600</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
</PersonalScores>
<PowerWeaponKills>0</PowerWeaponKills>
<RoundsLost>1</RoundsLost>
<RoundsTied>1</RoundsTied>
<RoundsWon>1</RoundsWon>
<Score>0</Score>
<ShotsFired>461</ShotsFired>
<ShotsHit>193</ShotsHit>
<Suicides>0</Suicides>
<VehicleDestroys>0</VehicleDestroys>
</CoreStats>
<EliminationStats>
<AlliesRevived>0</AlliesRevived>
<EliminationAssists>2</EliminationAssists>
<EliminationOrder>0</EliminationOrder>
<Eliminations>4</Eliminations>
<EnemyRevivesDenied>0</EnemyRevivesDenied>
<Executions>0</Executions>
<KillsAsLastPlayerStanding>0</KillsAsLastPlayerStanding>
<LastPlayersStandingKilled>1</LastPlayersStandingKilled>
<LivesRemaining i:nil="true" />
<RoundsSurvived>2</RoundsSurvived>
<TimesRevivedByAlly>1</TimesRevivedByAlly>
</EliminationStats>
<ExtractionStats i:nil="true" />
<InfectionStats i:nil="true" />
<OddballStats i:nil="true" />
<StockpileStats i:nil="true" />
<ZonesStats i:nil="true" />
</Stats>
<TeamId>0</TeamId>
</PlayerTeamStats>
</PlayerTeamStats>
<PlayerType>Human</PlayerType>
<Rank>1</Rank>
</PlayerStats>
<PlayerStats>
<BotAttributes i:nil="true" />
<LastTeamId>1</LastTeamId>
<Outcome>Loss</Outcome>
<ParticipationInfo>
<ConfirmedParticipation i:nil="true" />
<FirstJoinedTime>2022-01-24T06:02:37.719Z</FirstJoinedTime>
<JoinedInProgress>false</JoinedInProgress>
<LastLeaveTime i:nil="true" />
<LeftInProgress>false</LeftInProgress>
<PresentAtBeginning>true</PresentAtBeginning>
<PresentAtCompletion>true</PresentAtCompletion>
<TimePlayed>PT7M50.281S</TimePlayed>
</ParticipationInfo>
<PlayerId>xuid(PLAYER_XUID)</PlayerId>
<PlayerTeamStats>
<PlayerTeamStats>
<Stats>
<BombStats i:nil="true" />
<CaptureTheFlagStats i:nil="true" />
<CoreStats>
<Accuracy>34.92</Accuracy>
<Assists>4</Assists>
<AverageLifeDuration>PT0S</AverageLifeDuration>
<Betrayals>0</Betrayals>
<CalloutAssists>0</CalloutAssists>
<DamageDealt>2229</DamageDealt>
<DamageTaken>2006</DamageTaken>
<Deaths>7</Deaths>
<DeprecatedDamageDealt>2229</DeprecatedDamageDealt>
<DeprecatedDamageTaken>2006</DeprecatedDamageTaken>
<DriverAssists>0</DriverAssists>
<EmpAssists>0</EmpAssists>
<GrenadeKills>1</GrenadeKills>
<HeadshotKills>1</HeadshotKills>
<Hijacks>0</Hijacks>
<KDA>-0.66</KDA>
<Kills>5</Kills>
<MaxKillingSpree>2</MaxKillingSpree>
<Medals>
<MatchResultMedalStats>
<Count>1</Count>
<NameId>3655682764</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>1</Count>
<NameId>622331684</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
</Medals>
<MeleeKills>0</MeleeKills>
<PersonalScore>700</PersonalScore>
<PersonalScores>
<MatchResultPersonalScoreStats>
<Count>5</Count>
<NameId>1024030246</NameId>
<TotalPersonalScoreAwarded>500</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
<MatchResultPersonalScoreStats>
<Count>4</Count>
<NameId>638246808</NameId>
<TotalPersonalScoreAwarded>200</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
</PersonalScores>
<PowerWeaponKills>0</PowerWeaponKills>
<RoundsLost>1</RoundsLost>
<RoundsTied>1</RoundsTied>
<RoundsWon>1</RoundsWon>
<Score>0</Score>
<ShotsFired>209</ShotsFired>
<ShotsHit>73</ShotsHit>
<Suicides>0</Suicides>
<VehicleDestroys>0</VehicleDestroys>
</CoreStats>
<EliminationStats>
<AlliesRevived>0</AlliesRevived>
<EliminationAssists>1</EliminationAssists>
<EliminationOrder>0</EliminationOrder>
<Eliminations>0</Eliminations>
<EnemyRevivesDenied>0</EnemyRevivesDenied>
<Executions>0</Executions>
<KillsAsLastPlayerStanding>0</KillsAsLastPlayerStanding>
<LastPlayersStandingKilled>0</LastPlayersStandingKilled>
<LivesRemaining i:nil="true" />
<RoundsSurvived>0</RoundsSurvived>
<TimesRevivedByAlly>0</TimesRevivedByAlly>
</EliminationStats>
<ExtractionStats i:nil="true" />
<InfectionStats i:nil="true" />
<OddballStats i:nil="true" />
<StockpileStats i:nil="true" />
<ZonesStats i:nil="true" />
</Stats>
<TeamId>1</TeamId>
</PlayerTeamStats>
</PlayerTeamStats>
<PlayerType>Human</PlayerType>
<Rank>5</Rank>
</PlayerStats>
<PlayerStats>
<BotAttributes i:nil="true" />
<LastTeamId>1</LastTeamId>
<Outcome>Loss</Outcome>
<ParticipationInfo>
<ConfirmedParticipation i:nil="true" />
<FirstJoinedTime>2022-01-24T06:02:37.719Z</FirstJoinedTime>
<JoinedInProgress>false</JoinedInProgress>
<LastLeaveTime i:nil="true" />
<LeftInProgress>false</LeftInProgress>
<PresentAtBeginning>true</PresentAtBeginning>
<PresentAtCompletion>true</PresentAtCompletion>
<TimePlayed>PT7M50.281S</TimePlayed>
</ParticipationInfo>
<PlayerId>xuid(PLAYER_XUID)</PlayerId>
<PlayerTeamStats>
<PlayerTeamStats>
<Stats>
<BombStats i:nil="true" />
<CaptureTheFlagStats i:nil="true" />
<CoreStats>
<Accuracy>41.88</Accuracy>
<Assists>3</Assists>
<AverageLifeDuration>PT0S</AverageLifeDuration>
<Betrayals>0</Betrayals>
<CalloutAssists>0</CalloutAssists>
<DamageDealt>2609</DamageDealt>
<DamageTaken>3437</DamageTaken>
<Deaths>10</Deaths>
<DeprecatedDamageDealt>2609</DeprecatedDamageDealt>
<DeprecatedDamageTaken>3437</DeprecatedDamageTaken>
<DriverAssists>0</DriverAssists>
<EmpAssists>0</EmpAssists>
<GrenadeKills>0</GrenadeKills>
<HeadshotKills>0</HeadshotKills>
<Hijacks>0</Hijacks>
<KDA>-2</KDA>
<Kills>7</Kills>
<MaxKillingSpree>2</MaxKillingSpree>
<Medals>
<MatchResultMedalStats>
<Count>1</Count>
<NameId>2852571933</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
</Medals>
<MeleeKills>2</MeleeKills>
<PersonalScore>1150</PersonalScore>
<PersonalScores>
<MatchResultPersonalScoreStats>
<Count>5</Count>
<NameId>1024030246</NameId>
<TotalPersonalScoreAwarded>500</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
<MatchResultPersonalScoreStats>
<Count>2</Count>
<NameId>2408971842</NameId>
<TotalPersonalScoreAwarded>400</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
<MatchResultPersonalScoreStats>
<Count>1</Count>
<NameId>3428202435</NameId>
<TotalPersonalScoreAwarded>100</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
<MatchResultPersonalScoreStats>
<Count>3</Count>
<NameId>638246808</NameId>
<TotalPersonalScoreAwarded>150</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
</PersonalScores>
<PowerWeaponKills>0</PowerWeaponKills>
<RoundsLost>1</RoundsLost>
<RoundsTied>1</RoundsTied>
<RoundsWon>1</RoundsWon>
<Score>0</Score>
<ShotsFired>456</ShotsFired>
<ShotsHit>191</ShotsHit>
<Suicides>0</Suicides>
<VehicleDestroys>0</VehicleDestroys>
</CoreStats>
<EliminationStats>
<AlliesRevived>1</AlliesRevived>
<EliminationAssists>0</EliminationAssists>
<EliminationOrder>0</EliminationOrder>
<Eliminations>2</Eliminations>
<EnemyRevivesDenied>0</EnemyRevivesDenied>
<Executions>0</Executions>
<KillsAsLastPlayerStanding>1</KillsAsLastPlayerStanding>
<LastPlayersStandingKilled>0</LastPlayersStandingKilled>
<LivesRemaining i:nil="true" />
<RoundsSurvived>0</RoundsSurvived>
<TimesRevivedByAlly>0</TimesRevivedByAlly>
</EliminationStats>
<ExtractionStats i:nil="true" />
<InfectionStats i:nil="true" />
<OddballStats i:nil="true" />
<StockpileStats i:nil="true" />
<ZonesStats i:nil="true" />
</Stats>
<TeamId>1</TeamId>
</PlayerTeamStats>
</PlayerTeamStats>
<PlayerType>Human</PlayerType>
<Rank>5</Rank>
</PlayerStats>
<PlayerStats>
<BotAttributes i:nil="true" />
<LastTeamId>1</LastTeamId>
<Outcome>DidNotFinish</Outcome>
<ParticipationInfo>
<ConfirmedParticipation i:nil="true" />
<FirstJoinedTime>2022-01-24T06:02:37.719Z</FirstJoinedTime>
<JoinedInProgress>false</JoinedInProgress>
<LastLeaveTime>2022-01-24T06:05:38.353Z</LastLeaveTime>
<LeftInProgress>true</LeftInProgress>
<PresentAtBeginning>true</PresentAtBeginning>
<PresentAtCompletion>false</PresentAtCompletion>
<TimePlayed>PT3M0.6334974S</TimePlayed>
</ParticipationInfo>
<PlayerId>xuid(PLAYER_XUID)</PlayerId>
<PlayerTeamStats>
<PlayerTeamStats>
<Stats>
<BombStats i:nil="true" />
<CaptureTheFlagStats i:nil="true" />
<CoreStats>
<Accuracy>35.29</Accuracy>
<Assists>1</Assists>
<AverageLifeDuration>PT0S</AverageLifeDuration>
<Betrayals>0</Betrayals>
<CalloutAssists>0</CalloutAssists>
<DamageDealt>370</DamageDealt>
<DamageTaken>892</DamageTaken>
<Deaths>4</Deaths>
<DeprecatedDamageDealt>370</DeprecatedDamageDealt>
<DeprecatedDamageTaken>892</DeprecatedDamageTaken>
<DriverAssists>0</DriverAssists>
<EmpAssists>0</EmpAssists>
<GrenadeKills>0</GrenadeKills>
<HeadshotKills>0</HeadshotKills>
<Hijacks>0</Hijacks>
<KDA>-2.66</KDA>
<Kills>1</Kills>
<MaxKillingSpree>1</MaxKillingSpree>
<Medals />
<MeleeKills>0</MeleeKills>
<PersonalScore>150</PersonalScore>
<PersonalScores>
<MatchResultPersonalScoreStats>
<Count>1</Count>
<NameId>638246808</NameId>
<TotalPersonalScoreAwarded>50</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
<MatchResultPersonalScoreStats>
<Count>1</Count>
<NameId>1024030246</NameId>
<TotalPersonalScoreAwarded>100</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
</PersonalScores>
<PowerWeaponKills>0</PowerWeaponKills>
<RoundsLost>0</RoundsLost>
<RoundsTied>0</RoundsTied>
<RoundsWon>0</RoundsWon>
<Score>0</Score>
<ShotsFired>51</ShotsFired>
<ShotsHit>18</ShotsHit>
<Suicides>0</Suicides>
<VehicleDestroys>0</VehicleDestroys>
</CoreStats>
<EliminationStats>
<AlliesRevived>0</AlliesRevived>
<EliminationAssists>0</EliminationAssists>
<EliminationOrder>0</EliminationOrder>
<Eliminations>0</Eliminations>
<EnemyRevivesDenied>0</EnemyRevivesDenied>
<Executions>0</Executions>
<KillsAsLastPlayerStanding>0</KillsAsLastPlayerStanding>
<LastPlayersStandingKilled>0</LastPlayersStandingKilled>
<LivesRemaining i:nil="true" />
<RoundsSurvived>0</RoundsSurvived>
<TimesRevivedByAlly>0</TimesRevivedByAlly>
</EliminationStats>
<ExtractionStats i:nil="true" />
<InfectionStats i:nil="true" />
<OddballStats i:nil="true" />
<StockpileStats i:nil="true" />
<ZonesStats i:nil="true" />
</Stats>
<TeamId>1</TeamId>
</PlayerTeamStats>
</PlayerTeamStats>
<PlayerType>Human</PlayerType>
<Rank>9</Rank>
</PlayerStats>
<PlayerStats>
<BotAttributes i:nil="true" />
<LastTeamId>0</LastTeamId>
<Outcome>Win</Outcome>
<ParticipationInfo>
<ConfirmedParticipation i:nil="true" />
<FirstJoinedTime>2022-01-24T06:02:37.719Z</FirstJoinedTime>
<JoinedInProgress>false</JoinedInProgress>
<LastLeaveTime i:nil="true" />
<LeftInProgress>false</LeftInProgress>
<PresentAtBeginning>true</PresentAtBeginning>
<PresentAtCompletion>true</PresentAtCompletion>
<TimePlayed>PT7M50.281S</TimePlayed>
</ParticipationInfo>
<PlayerId>xuid(PLAYER_XUID)</PlayerId>
<PlayerTeamStats>
<PlayerTeamStats>
<Stats>
<BombStats i:nil="true" />
<CaptureTheFlagStats i:nil="true" />
<CoreStats>
<Accuracy>26.02</Accuracy>
<Assists>4</Assists>
<AverageLifeDuration>PT0S</AverageLifeDuration>
<Betrayals>0</Betrayals>
<CalloutAssists>0</CalloutAssists>
<DamageDealt>1752</DamageDealt>
<DamageTaken>2523</DamageTaken>
<Deaths>9</Deaths>
<DeprecatedDamageDealt>1752</DeprecatedDamageDealt>
<DeprecatedDamageTaken>2523</DeprecatedDamageTaken>
<DriverAssists>0</DriverAssists>
<EmpAssists>0</EmpAssists>
<GrenadeKills>2</GrenadeKills>
<HeadshotKills>0</HeadshotKills>
<Hijacks>0</Hijacks>
<KDA>-1.66</KDA>
<Kills>6</Kills>
<MaxKillingSpree>1</MaxKillingSpree>
<Medals>
<MatchResultMedalStats>
<Count>1</Count>
<NameId>548533137</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
</Medals>
<MeleeKills>2</MeleeKills>
<PersonalScore>1000</PersonalScore>
<PersonalScores>
<MatchResultPersonalScoreStats>
<Count>4</Count>
<NameId>638246808</NameId>
<TotalPersonalScoreAwarded>200</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
<MatchResultPersonalScoreStats>
<Count>4</Count>
<NameId>1024030246</NameId>
<TotalPersonalScoreAwarded>400</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
<MatchResultPersonalScoreStats>
<Count>2</Count>
<NameId>2408971842</NameId>
<TotalPersonalScoreAwarded>400</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
</PersonalScores>
<PowerWeaponKills>0</PowerWeaponKills>
<RoundsLost>1</RoundsLost>
<RoundsTied>1</RoundsTied>
<RoundsWon>1</RoundsWon>
<Score>0</Score>
<ShotsFired>365</ShotsFired>
<ShotsHit>95</ShotsHit>
<Suicides>0</Suicides>
<VehicleDestroys>0</VehicleDestroys>
</CoreStats>
<EliminationStats>
<AlliesRevived>0</AlliesRevived>
<EliminationAssists>1</EliminationAssists>
<EliminationOrder>0</EliminationOrder>
<Eliminations>2</Eliminations>
<EnemyRevivesDenied>0</EnemyRevivesDenied>
<Executions>0</Executions>
<KillsAsLastPlayerStanding>0</KillsAsLastPlayerStanding>
<LastPlayersStandingKilled>1</LastPlayersStandingKilled>
<LivesRemaining i:nil="true" />
<RoundsSurvived>1</RoundsSurvived>
<TimesRevivedByAlly>1</TimesRevivedByAlly>
</EliminationStats>
<ExtractionStats i:nil="true" />
<InfectionStats i:nil="true" />
<OddballStats i:nil="true" />
<StockpileStats i:nil="true" />
<ZonesStats i:nil="true" />
</Stats>
<TeamId>0</TeamId>
</PlayerTeamStats>
</PlayerTeamStats>
<PlayerType>Human</PlayerType>
<Rank>1</Rank>
</PlayerStats>
<PlayerStats>
<BotAttributes i:nil="true" />
<LastTeamId>1</LastTeamId>
<Outcome>Loss</Outcome>
<ParticipationInfo>
<ConfirmedParticipation i:nil="true" />
<FirstJoinedTime>2022-01-24T06:02:37.719Z</FirstJoinedTime>
<JoinedInProgress>false</JoinedInProgress>
<LastLeaveTime i:nil="true" />
<LeftInProgress>false</LeftInProgress>
<PresentAtBeginning>true</PresentAtBeginning>
<PresentAtCompletion>true</PresentAtCompletion>
<TimePlayed>PT7M50.281S</TimePlayed>
</ParticipationInfo>
<PlayerId>xuid(PLAYER_XUID)</PlayerId>
<PlayerTeamStats>
<PlayerTeamStats>
<Stats>
<BombStats i:nil="true" />
<CaptureTheFlagStats i:nil="true" />
<CoreStats>
<Accuracy>46.93</Accuracy>
<Assists>3</Assists>
<AverageLifeDuration>PT0S</AverageLifeDuration>
<Betrayals>0</Betrayals>
<CalloutAssists>0</CalloutAssists>
<DamageDealt>3880</DamageDealt>
<DamageTaken>2411</DamageTaken>
<Deaths>8</Deaths>
<DeprecatedDamageDealt>3880</DeprecatedDamageDealt>
<DeprecatedDamageTaken>2411</DeprecatedDamageTaken>
<DriverAssists>0</DriverAssists>
<EmpAssists>0</EmpAssists>
<GrenadeKills>3</GrenadeKills>
<HeadshotKills>0</HeadshotKills>
<Hijacks>0</Hijacks>
<KDA>9</KDA>
<Kills>16</Kills>
<MaxKillingSpree>4</MaxKillingSpree>
<Medals>
<MatchResultMedalStats>
<Count>2</Count>
<NameId>2123530881</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>5</Count>
<NameId>622331684</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>2</Count>
<NameId>651256911</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>1</Count>
<NameId>1969067783</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>1</Count>
<NameId>3233952928</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>1</Count>
<NameId>2625820422</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>1</Count>
<NameId>2063152177</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>1</Count>
<NameId>2623698509</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>1</Count>
<NameId>269174970</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>1</Count>
<NameId>2852571933</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
</Medals>
<MeleeKills>6</MeleeKills>
<PersonalScore>2275</PersonalScore>
<PersonalScores>
<MatchResultPersonalScoreStats>
<Count>11</Count>
<NameId>1024030246</NameId>
<TotalPersonalScoreAwarded>1100</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
<MatchResultPersonalScoreStats>
<Count>3</Count>
<NameId>638246808</NameId>
<TotalPersonalScoreAwarded>150</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
<MatchResultPersonalScoreStats>
<Count>5</Count>
<NameId>2408971842</NameId>
<TotalPersonalScoreAwarded>1000</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
<MatchResultPersonalScoreStats>
<Count>1</Count>
<NameId>2130209372</NameId>
<TotalPersonalScoreAwarded>25</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
</PersonalScores>
<PowerWeaponKills>0</PowerWeaponKills>
<RoundsLost>1</RoundsLost>
<RoundsTied>1</RoundsTied>
<RoundsWon>1</RoundsWon>
<Score>0</Score>
<ShotsFired>392</ShotsFired>
<ShotsHit>184</ShotsHit>
<Suicides>0</Suicides>
<VehicleDestroys>0</VehicleDestroys>
</CoreStats>
<EliminationStats>
<AlliesRevived>0</AlliesRevived>
<EliminationAssists>0</EliminationAssists>
<EliminationOrder>0</EliminationOrder>
<Eliminations>5</Eliminations>
<EnemyRevivesDenied>1</EnemyRevivesDenied>
<Executions>0</Executions>
<KillsAsLastPlayerStanding>4</KillsAsLastPlayerStanding>
<LastPlayersStandingKilled>1</LastPlayersStandingKilled>
<LivesRemaining i:nil="true" />
<RoundsSurvived>1</RoundsSurvived>
<TimesRevivedByAlly>1</TimesRevivedByAlly>
</EliminationStats>
<ExtractionStats i:nil="true" />
<InfectionStats i:nil="true" />
<OddballStats i:nil="true" />
<StockpileStats i:nil="true" />
<ZonesStats i:nil="true" />
</Stats>
<TeamId>1</TeamId>
</PlayerTeamStats>
</PlayerTeamStats>
<PlayerType>Human</PlayerType>
<Rank>5</Rank>
</PlayerStats>
<PlayerStats>
<BotAttributes i:nil="true" />
<LastTeamId>0</LastTeamId>
<Outcome>Win</Outcome>
<ParticipationInfo>
<ConfirmedParticipation i:nil="true" />
<FirstJoinedTime>2022-01-24T06:02:37.719Z</FirstJoinedTime>
<JoinedInProgress>false</JoinedInProgress>
<LastLeaveTime i:nil="true" />
<LeftInProgress>false</LeftInProgress>
<PresentAtBeginning>true</PresentAtBeginning>
<PresentAtCompletion>true</PresentAtCompletion>
<TimePlayed>PT7M50.281S</TimePlayed>
</ParticipationInfo>
<PlayerId>xuid(PLAYER_XUID)</PlayerId>
<PlayerTeamStats>
<PlayerTeamStats>
<Stats>
<BombStats i:nil="true" />
<CaptureTheFlagStats i:nil="true" />
<CoreStats>
<Accuracy>34.14</Accuracy>
<Assists>4</Assists>
<AverageLifeDuration>PT0S</AverageLifeDuration>
<Betrayals>0</Betrayals>
<CalloutAssists>0</CalloutAssists>
<DamageDealt>2726</DamageDealt>
<DamageTaken>2554</DamageTaken>
<Deaths>6</Deaths>
<DeprecatedDamageDealt>2726</DeprecatedDamageDealt>
<DeprecatedDamageTaken>2554</DeprecatedDamageTaken>
<DriverAssists>0</DriverAssists>
<EmpAssists>0</EmpAssists>
<GrenadeKills>1</GrenadeKills>
<HeadshotKills>0</HeadshotKills>
<Hijacks>0</Hijacks>
<KDA>6.33</KDA>
<Kills>11</Kills>
<MaxKillingSpree>6</MaxKillingSpree>
<Medals>
<MatchResultMedalStats>
<Count>1</Count>
<NameId>548533137</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>2</Count>
<NameId>622331684</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>1</Count>
<NameId>2780740615</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>1</Count>
<NameId>269174970</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
</Medals>
<MeleeKills>7</MeleeKills>
<PersonalScore>1600</PersonalScore>
<PersonalScores>
<MatchResultPersonalScoreStats>
<Count>8</Count>
<NameId>1024030246</NameId>
<TotalPersonalScoreAwarded>800</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
<MatchResultPersonalScoreStats>
<Count>4</Count>
<NameId>638246808</NameId>
<TotalPersonalScoreAwarded>200</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
<MatchResultPersonalScoreStats>
<Count>3</Count>
<NameId>2408971842</NameId>
<TotalPersonalScoreAwarded>600</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
</PersonalScores>
<PowerWeaponKills>0</PowerWeaponKills>
<RoundsLost>1</RoundsLost>
<RoundsTied>1</RoundsTied>
<RoundsWon>1</RoundsWon>
<Score>0</Score>
<ShotsFired>328</ShotsFired>
<ShotsHit>112</ShotsHit>
<Suicides>0</Suicides>
<VehicleDestroys>0</VehicleDestroys>
</CoreStats>
<EliminationStats>
<AlliesRevived>0</AlliesRevived>
<EliminationAssists>2</EliminationAssists>
<EliminationOrder>0</EliminationOrder>
<Eliminations>3</Eliminations>
<EnemyRevivesDenied>0</EnemyRevivesDenied>
<Executions>0</Executions>
<KillsAsLastPlayerStanding>0</KillsAsLastPlayerStanding>
<LastPlayersStandingKilled>0</LastPlayersStandingKilled>
<LivesRemaining i:nil="true" />
<RoundsSurvived>2</RoundsSurvived>
<TimesRevivedByAlly>0</TimesRevivedByAlly>
</EliminationStats>
<ExtractionStats i:nil="true" />
<InfectionStats i:nil="true" />
<OddballStats i:nil="true" />
<StockpileStats i:nil="true" />
<ZonesStats i:nil="true" />
</Stats>
<TeamId>0</TeamId>
</PlayerTeamStats>
</PlayerTeamStats>
<PlayerType>Human</PlayerType>
<Rank>1</Rank>
</PlayerStats>
<PlayerStats>
<BotAttributes i:nil="true" />
<LastTeamId>0</LastTeamId>
<Outcome>Win</Outcome>
<ParticipationInfo>
<ConfirmedParticipation i:nil="true" />
<FirstJoinedTime>2022-01-24T06:02:37.719Z</FirstJoinedTime>
<JoinedInProgress>false</JoinedInProgress>
<LastLeaveTime i:nil="true" />
<LeftInProgress>false</LeftInProgress>
<PresentAtBeginning>true</PresentAtBeginning>
<PresentAtCompletion>true</PresentAtCompletion>
<TimePlayed>PT7M50.281S</TimePlayed>
</ParticipationInfo>
<PlayerId>xuid(PLAYER_XUID)</PlayerId>
<PlayerTeamStats>
<PlayerTeamStats>
<Stats>
<BombStats i:nil="true" />
<CaptureTheFlagStats i:nil="true" />
<CoreStats>
<Accuracy>33</Accuracy>
<Assists>7</Assists>
<AverageLifeDuration>PT0S</AverageLifeDuration>
<Betrayals>0</Betrayals>
<CalloutAssists>0</CalloutAssists>
<DamageDealt>2654</DamageDealt>
<DamageTaken>2432</DamageTaken>
<Deaths>7</Deaths>
<DeprecatedDamageDealt>2654</DeprecatedDamageDealt>
<DeprecatedDamageTaken>2432</DeprecatedDamageTaken>
<DriverAssists>0</DriverAssists>
<EmpAssists>0</EmpAssists>
<GrenadeKills>0</GrenadeKills>
<HeadshotKills>1</HeadshotKills>
<Hijacks>0</Hijacks>
<KDA>4.33</KDA>
<Kills>9</Kills>
<MaxKillingSpree>4</MaxKillingSpree>
<Medals>
<MatchResultMedalStats>
<Count>1</Count>
<NameId>548533137</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>1</Count>
<NameId>269174970</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
</Medals>
<MeleeKills>5</MeleeKills>
<PersonalScore>1750</PersonalScore>
<PersonalScores>
<MatchResultPersonalScoreStats>
<Count>7</Count>
<NameId>638246808</NameId>
<TotalPersonalScoreAwarded>350</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
<MatchResultPersonalScoreStats>
<Count>6</Count>
<NameId>1024030246</NameId>
<TotalPersonalScoreAwarded>600</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
<MatchResultPersonalScoreStats>
<Count>2</Count>
<NameId>3428202435</NameId>
<TotalPersonalScoreAwarded>200</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
<MatchResultPersonalScoreStats>
<Count>3</Count>
<NameId>2408971842</NameId>
<TotalPersonalScoreAwarded>600</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
</PersonalScores>
<PowerWeaponKills>0</PowerWeaponKills>
<RoundsLost>1</RoundsLost>
<RoundsTied>1</RoundsTied>
<RoundsWon>1</RoundsWon>
<Score>0</Score>
<ShotsFired>506</ShotsFired>
<ShotsHit>167</ShotsHit>
<Suicides>0</Suicides>
<VehicleDestroys>0</VehicleDestroys>
</CoreStats>
<EliminationStats>
<AlliesRevived>2</AlliesRevived>
<EliminationAssists>2</EliminationAssists>
<EliminationOrder>0</EliminationOrder>
<Eliminations>3</Eliminations>
<EnemyRevivesDenied>0</EnemyRevivesDenied>
<Executions>0</Executions>
<KillsAsLastPlayerStanding>0</KillsAsLastPlayerStanding>
<LastPlayersStandingKilled>0</LastPlayersStandingKilled>
<LivesRemaining i:nil="true" />
<RoundsSurvived>2</RoundsSurvived>
<TimesRevivedByAlly>0</TimesRevivedByAlly>
</EliminationStats>
<ExtractionStats i:nil="true" />
<InfectionStats i:nil="true" />
<OddballStats i:nil="true" />
<StockpileStats i:nil="true" />
<ZonesStats i:nil="true" />
</Stats>
<TeamId>0</TeamId>
</PlayerTeamStats>
</PlayerTeamStats>
<PlayerType>Human</PlayerType>
<Rank>1</Rank>
</PlayerStats>
<PlayerStats>
<BotAttributes>
<Difficulty>Marine</Difficulty>
</BotAttributes>
<LastTeamId>0</LastTeamId>
<Outcome>DidNotFinish</Outcome>
<ParticipationInfo>
<ConfirmedParticipation i:nil="true" />
<FirstJoinedTime>2022-01-24T06:02:40.741Z</FirstJoinedTime>
<JoinedInProgress>true</JoinedInProgress>
<LastLeaveTime i:nil="true" />
<LeftInProgress>false</LeftInProgress>
<PresentAtBeginning>false</PresentAtBeginning>
<PresentAtCompletion>true</PresentAtCompletion>
<TimePlayed>PT7M47.2608785S</TimePlayed>
</ParticipationInfo>
<PlayerId>bid(32.0)</PlayerId>
<PlayerTeamStats>
<PlayerTeamStats>
<Stats>
<BombStats i:nil="true" />
<CaptureTheFlagStats i:nil="true" />
<CoreStats>
<Accuracy>0</Accuracy>
<Assists>0</Assists>
<AverageLifeDuration>PT0S</AverageLifeDuration>
<Betrayals>0</Betrayals>
<CalloutAssists>0</CalloutAssists>
<DamageDealt>0</DamageDealt>
<DamageTaken>0</DamageTaken>
<Deaths>0</Deaths>
<DeprecatedDamageDealt>0</DeprecatedDamageDealt>
<DeprecatedDamageTaken>0</DeprecatedDamageTaken>
<DriverAssists>0</DriverAssists>
<EmpAssists>0</EmpAssists>
<GrenadeKills>0</GrenadeKills>
<HeadshotKills>0</HeadshotKills>
<Hijacks>0</Hijacks>
<KDA>0</KDA>
<Kills>0</Kills>
<MaxKillingSpree>0</MaxKillingSpree>
<Medals />
<MeleeKills>0</MeleeKills>
<PersonalScore>0</PersonalScore>
<PersonalScores />
<PowerWeaponKills>0</PowerWeaponKills>
<RoundsLost>0</RoundsLost>
<RoundsTied>0</RoundsTied>
<RoundsWon>0</RoundsWon>
<Score>0</Score>
<ShotsFired>0</ShotsFired>
<ShotsHit>0</ShotsHit>
<Suicides>0</Suicides>
<VehicleDestroys>0</VehicleDestroys>
</CoreStats>
<EliminationStats>
<AlliesRevived>0</AlliesRevived>
<EliminationAssists>0</EliminationAssists>
<EliminationOrder>0</EliminationOrder>
<Eliminations>0</Eliminations>
<EnemyRevivesDenied>0</EnemyRevivesDenied>
<Executions>0</Executions>
<KillsAsLastPlayerStanding>0</KillsAsLastPlayerStanding>
<LastPlayersStandingKilled>0</LastPlayersStandingKilled>
<LivesRemaining i:nil="true" />
<RoundsSurvived>0</RoundsSurvived>
<TimesRevivedByAlly>0</TimesRevivedByAlly>
</EliminationStats>
<ExtractionStats i:nil="true" />
<InfectionStats i:nil="true" />
<OddballStats i:nil="true" />
<StockpileStats i:nil="true" />
<ZonesStats i:nil="true" />
</Stats>
<TeamId>0</TeamId>
</PlayerTeamStats>
</PlayerTeamStats>
<PlayerType>Bot</PlayerType>
<Rank>9</Rank>
</PlayerStats>
<PlayerStats>
<BotAttributes i:nil="true" />
<LastTeamId>1</LastTeamId>
<Outcome>Loss</Outcome>
<ParticipationInfo>
<ConfirmedParticipation i:nil="true" />
<FirstJoinedTime>2022-01-24T06:05:39.286Z</FirstJoinedTime>
<JoinedInProgress>true</JoinedInProgress>
<LastLeaveTime i:nil="true" />
<LeftInProgress>false</LeftInProgress>
<PresentAtBeginning>false</PresentAtBeginning>
<PresentAtCompletion>true</PresentAtCompletion>
<TimePlayed>PT4M48.7159368S</TimePlayed>
</ParticipationInfo>
<PlayerId>xuid(PLAYER_XUID)</PlayerId>
<PlayerTeamStats>
<PlayerTeamStats>
<Stats>
<BombStats i:nil="true" />
<CaptureTheFlagStats i:nil="true" />
<CoreStats>
<Accuracy>40</Accuracy>
<Assists>2</Assists>
<AverageLifeDuration>PT0S</AverageLifeDuration>
<Betrayals>0</Betrayals>
<CalloutAssists>0</CalloutAssists>
<DamageDealt>1205</DamageDealt>
<DamageTaken>1773</DamageTaken>
<Deaths>7</Deaths>
<DeprecatedDamageDealt>1205</DeprecatedDamageDealt>
<DeprecatedDamageTaken>1773</DeprecatedDamageTaken>
<DriverAssists>0</DriverAssists>
<EmpAssists>0</EmpAssists>
<GrenadeKills>1</GrenadeKills>
<HeadshotKills>0</HeadshotKills>
<Hijacks>0</Hijacks>
<KDA>-5.33</KDA>
<Kills>1</Kills>
<MaxKillingSpree>1</MaxKillingSpree>
<Medals />
<MeleeKills>0</MeleeKills>
<PersonalScore>200</PersonalScore>
<PersonalScores>
<MatchResultPersonalScoreStats>
<Count>2</Count>
<NameId>638246808</NameId>
<TotalPersonalScoreAwarded>100</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
<MatchResultPersonalScoreStats>
<Count>1</Count>
<NameId>1024030246</NameId>
<TotalPersonalScoreAwarded>100</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
</PersonalScores>
<PowerWeaponKills>0</PowerWeaponKills>
<RoundsLost>1</RoundsLost>
<RoundsTied>1</RoundsTied>
<RoundsWon>0</RoundsWon>
<Score>0</Score>
<ShotsFired>220</ShotsFired>
<ShotsHit>88</ShotsHit>
<Suicides>0</Suicides>
<VehicleDestroys>0</VehicleDestroys>
</CoreStats>
<EliminationStats>
<AlliesRevived>0</AlliesRevived>
<EliminationAssists>0</EliminationAssists>
<EliminationOrder>0</EliminationOrder>
<Eliminations>0</Eliminations>
<EnemyRevivesDenied>0</EnemyRevivesDenied>
<Executions>0</Executions>
<KillsAsLastPlayerStanding>0</KillsAsLastPlayerStanding>
<LastPlayersStandingKilled>0</LastPlayersStandingKilled>
<LivesRemaining i:nil="true" />
<RoundsSurvived>0</RoundsSurvived>
<TimesRevivedByAlly>0</TimesRevivedByAlly>
</EliminationStats>
<ExtractionStats i:nil="true" />
<InfectionStats i:nil="true" />
<OddballStats i:nil="true" />
<StockpileStats i:nil="true" />
<ZonesStats i:nil="true" />
</Stats>
<TeamId>1</TeamId>
</PlayerTeamStats>
</PlayerTeamStats>
<PlayerType>Human</PlayerType>
<Rank>8</Rank>
</PlayerStats>
<PlayerStats>
<BotAttributes>
<Difficulty>Marine</Difficulty>
</BotAttributes>
<LastTeamId>1</LastTeamId>
<Outcome>DidNotFinish</Outcome>
<ParticipationInfo>
<ConfirmedParticipation i:nil="true" />
<FirstJoinedTime>2022-01-24T06:06:01.609Z</FirstJoinedTime>
<JoinedInProgress>true</JoinedInProgress>
<LastLeaveTime i:nil="true" />
<LeftInProgress>false</LeftInProgress>
<PresentAtBeginning>false</PresentAtBeginning>
<PresentAtCompletion>true</PresentAtCompletion>
<TimePlayed>PT4M33.9431256S</TimePlayed>
</ParticipationInfo>
<PlayerId>bid(21.0)</PlayerId>
<PlayerTeamStats>
<PlayerTeamStats>
<Stats>
<BombStats i:nil="true" />
<CaptureTheFlagStats i:nil="true" />
<CoreStats>
<Accuracy>0</Accuracy>
<Assists>0</Assists>
<AverageLifeDuration>PT0S</AverageLifeDuration>
<Betrayals>0</Betrayals>
<CalloutAssists>0</CalloutAssists>
<DamageDealt>0</DamageDealt>
<DamageTaken>0</DamageTaken>
<Deaths>0</Deaths>
<DeprecatedDamageDealt>0</DeprecatedDamageDealt>
<DeprecatedDamageTaken>0</DeprecatedDamageTaken>
<DriverAssists>0</DriverAssists>
<EmpAssists>0</EmpAssists>
<GrenadeKills>0</GrenadeKills>
<HeadshotKills>0</HeadshotKills>
<Hijacks>0</Hijacks>
<KDA>0</KDA>
<Kills>0</Kills>
<MaxKillingSpree>0</MaxKillingSpree>
<Medals />
<MeleeKills>0</MeleeKills>
<PersonalScore>0</PersonalScore>
<PersonalScores />
<PowerWeaponKills>0</PowerWeaponKills>
<RoundsLost>0</RoundsLost>
<RoundsTied>0</RoundsTied>
<RoundsWon>0</RoundsWon>
<Score>0</Score>
<ShotsFired>0</ShotsFired>
<ShotsHit>0</ShotsHit>
<Suicides>0</Suicides>
<VehicleDestroys>0</VehicleDestroys>
</CoreStats>
<EliminationStats>
<AlliesRevived>0</AlliesRevived>
<EliminationAssists>0</EliminationAssists>
<EliminationOrder>0</EliminationOrder>
<Eliminations>0</Eliminations>
<EnemyRevivesDenied>0</EnemyRevivesDenied>
<Executions>0</Executions>
<KillsAsLastPlayerStanding>0</KillsAsLastPlayerStanding>
<LastPlayersStandingKilled>0</LastPlayersStandingKilled>
<LivesRemaining i:nil="true" />
<RoundsSurvived>0</RoundsSurvived>
<TimesRevivedByAlly>0</TimesRevivedByAlly>
</EliminationStats>
<ExtractionStats i:nil="true" />
<InfectionStats i:nil="true" />
<OddballStats i:nil="true" />
<StockpileStats i:nil="true" />
<ZonesStats i:nil="true" />
</Stats>
<TeamId>1</TeamId>
</PlayerTeamStats>
</PlayerTeamStats>
<PlayerType>Bot</PlayerType>
<Rank>9</Rank>
</PlayerStats>
<PlayerStats>
<BotAttributes>
<Difficulty>Marine</Difficulty>
</BotAttributes>
<LastTeamId>1</LastTeamId>
<Outcome>DidNotFinish</Outcome>
<ParticipationInfo>
<ConfirmedParticipation i:nil="true" />
<FirstJoinedTime>2022-01-24T06:08:41.895Z</FirstJoinedTime>
<JoinedInProgress>true</JoinedInProgress>
<LastLeaveTime i:nil="true" />
<LeftInProgress>false</LeftInProgress>
<PresentAtBeginning>false</PresentAtBeginning>
<PresentAtCompletion>true</PresentAtCompletion>
<TimePlayed>PT2M1.2002604S</TimePlayed>
</ParticipationInfo>
<PlayerId>bid(43.0)</PlayerId>
<PlayerTeamStats>
<PlayerTeamStats>
<Stats>
<BombStats i:nil="true" />
<CaptureTheFlagStats i:nil="true" />
<CoreStats>
<Accuracy>0</Accuracy>
<Assists>0</Assists>
<AverageLifeDuration>PT0S</AverageLifeDuration>
<Betrayals>0</Betrayals>
<CalloutAssists>0</CalloutAssists>
<DamageDealt>0</DamageDealt>
<DamageTaken>0</DamageTaken>
<Deaths>0</Deaths>
<DeprecatedDamageDealt>0</DeprecatedDamageDealt>
<DeprecatedDamageTaken>0</DeprecatedDamageTaken>
<DriverAssists>0</DriverAssists>
<EmpAssists>0</EmpAssists>
<GrenadeKills>0</GrenadeKills>
<HeadshotKills>0</HeadshotKills>
<Hijacks>0</Hijacks>
<KDA>0</KDA>
<Kills>0</Kills>
<MaxKillingSpree>0</MaxKillingSpree>
<Medals />
<MeleeKills>0</MeleeKills>
<PersonalScore>0</PersonalScore>
<PersonalScores />
<PowerWeaponKills>0</PowerWeaponKills>
<RoundsLost>0</RoundsLost>
<RoundsTied>0</RoundsTied>
<RoundsWon>0</RoundsWon>
<Score>0</Score>
<ShotsFired>0</ShotsFired>
<ShotsHit>0</ShotsHit>
<Suicides>0</Suicides>
<VehicleDestroys>0</VehicleDestroys>
</CoreStats>
<EliminationStats>
<AlliesRevived>0</AlliesRevived>
<EliminationAssists>0</EliminationAssists>
<EliminationOrder>0</EliminationOrder>
<Eliminations>0</Eliminations>
<EnemyRevivesDenied>0</EnemyRevivesDenied>
<Executions>0</Executions>
<KillsAsLastPlayerStanding>0</KillsAsLastPlayerStanding>
<LastPlayersStandingKilled>0</LastPlayersStandingKilled>
<LivesRemaining i:nil="true" />
<RoundsSurvived>0</RoundsSurvived>
<TimesRevivedByAlly>0</TimesRevivedByAlly>
</EliminationStats>
<ExtractionStats i:nil="true" />
<InfectionStats i:nil="true" />
<OddballStats i:nil="true" />
<StockpileStats i:nil="true" />
<ZonesStats i:nil="true" />
</Stats>
<TeamId>1</TeamId>
</PlayerTeamStats>
</PlayerTeamStats>
<PlayerType>Bot</PlayerType>
<Rank>9</Rank>
</PlayerStats>
</Players>
<Teams>
<TeamStats>
<Outcome>Win</Outcome>
<Rank>1</Rank>
<Stats>
<BombStats i:nil="true" />
<CaptureTheFlagStats i:nil="true" />
<CoreStats>
<Accuracy>34.15</Accuracy>
<Assists>20</Assists>
<AverageLifeDuration>PT0S</AverageLifeDuration>
<Betrayals>0</Betrayals>
<CalloutAssists>0</CalloutAssists>
<DamageDealt>10349</DamageDealt>
<DamageTaken>10360</DamageTaken>
<Deaths>30</Deaths>
<DeprecatedDamageDealt>10349</DeprecatedDamageDealt>
<DeprecatedDamageTaken>10360</DeprecatedDamageTaken>
<DriverAssists>0</DriverAssists>
<EmpAssists>0</EmpAssists>
<GrenadeKills>3</GrenadeKills>
<HeadshotKills>2</HeadshotKills>
<Hijacks>0</Hijacks>
<KDA>12.66</KDA>
<Kills>36</Kills>
<MaxKillingSpree>6</MaxKillingSpree>
<Medals>
<MatchResultMedalStats>
<Count>3</Count>
<NameId>548533137</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>3</Count>
<NameId>622331684</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>1</Count>
<NameId>2780740615</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>2</Count>
<NameId>269174970</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>1</Count>
<NameId>2852571933</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
</Medals>
<MeleeKills>17</MeleeKills>
<PersonalScore>6050</PersonalScore>
<PersonalScores>
<MatchResultPersonalScoreStats>
<Count>24</Count>
<NameId>1024030246</NameId>
<TotalPersonalScoreAwarded>2400</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
<MatchResultPersonalScoreStats>
<Count>21</Count>
<NameId>638246808</NameId>
<TotalPersonalScoreAwarded>1050</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
<MatchResultPersonalScoreStats>
<Count>12</Count>
<NameId>2408971842</NameId>
<TotalPersonalScoreAwarded>2400</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
<MatchResultPersonalScoreStats>
<Count>2</Count>
<NameId>3428202435</NameId>
<TotalPersonalScoreAwarded>200</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
</PersonalScores>
<PowerWeaponKills>0</PowerWeaponKills>
<RoundsLost>1</RoundsLost>
<RoundsTied>1</RoundsTied>
<RoundsWon>1</RoundsWon>
<Score>2</Score>
<ShotsFired>1660</ShotsFired>
<ShotsHit>567</ShotsHit>
<Suicides>0</Suicides>
<VehicleDestroys>0</VehicleDestroys>
</CoreStats>
<EliminationStats>
<AlliesRevived>2</AlliesRevived>
<EliminationAssists>7</EliminationAssists>
<EliminationOrder>0</EliminationOrder>
<Eliminations>12</Eliminations>
<EnemyRevivesDenied>0</EnemyRevivesDenied>
<Executions>0</Executions>
<KillsAsLastPlayerStanding>0</KillsAsLastPlayerStanding>
<LastPlayersStandingKilled>2</LastPlayersStandingKilled>
<LivesRemaining>1</LivesRemaining>
<RoundsSurvived>2</RoundsSurvived>
<TimesRevivedByAlly>2</TimesRevivedByAlly>
</EliminationStats>
<ExtractionStats i:nil="true" />
<InfectionStats i:nil="true" />
<OddballStats i:nil="true" />
<StockpileStats i:nil="true" />
<ZonesStats i:nil="true" />
</Stats>
<TeamId>0</TeamId>
</TeamStats>
<TeamStats>
<Outcome>Loss</Outcome>
<Rank>2</Rank>
<Stats>
<BombStats i:nil="true" />
<CaptureTheFlagStats i:nil="true" />
<CoreStats>
<Accuracy>41.71</Accuracy>
<Assists>11</Assists>
<AverageLifeDuration>PT0S</AverageLifeDuration>
<Betrayals>0</Betrayals>
<CalloutAssists>0</CalloutAssists>
<DamageDealt>10293</DamageDealt>
<DamageTaken>10519</DamageTaken>
<Deaths>36</Deaths>
<DeprecatedDamageDealt>10293</DeprecatedDamageDealt>
<DeprecatedDamageTaken>10519</DeprecatedDamageTaken>
<DriverAssists>0</DriverAssists>
<EmpAssists>0</EmpAssists>
<GrenadeKills>5</GrenadeKills>
<HeadshotKills>1</HeadshotKills>
<Hijacks>0</Hijacks>
<KDA>-2.33</KDA>
<Kills>30</Kills>
<MaxKillingSpree>4</MaxKillingSpree>
<Medals>
<MatchResultMedalStats>
<Count>2</Count>
<NameId>2123530881</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>6</Count>
<NameId>622331684</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>2</Count>
<NameId>651256911</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>1</Count>
<NameId>1969067783</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>1</Count>
<NameId>3233952928</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>1</Count>
<NameId>2625820422</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>1</Count>
<NameId>2063152177</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>1</Count>
<NameId>2623698509</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>1</Count>
<NameId>3655682764</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>1</Count>
<NameId>269174970</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
<MatchResultMedalStats>
<Count>2</Count>
<NameId>2852571933</NameId>
<TotalPersonalScoreAwarded>0</TotalPersonalScoreAwarded>
</MatchResultMedalStats>
</Medals>
<MeleeKills>8</MeleeKills>
<PersonalScore>4475</PersonalScore>
<PersonalScores>
<MatchResultPersonalScoreStats>
<Count>23</Count>
<NameId>1024030246</NameId>
<TotalPersonalScoreAwarded>2300</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
<MatchResultPersonalScoreStats>
<Count>13</Count>
<NameId>638246808</NameId>
<TotalPersonalScoreAwarded>650</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
<MatchResultPersonalScoreStats>
<Count>7</Count>
<NameId>2408971842</NameId>
<TotalPersonalScoreAwarded>1400</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
<MatchResultPersonalScoreStats>
<Count>1</Count>
<NameId>3428202435</NameId>
<TotalPersonalScoreAwarded>100</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
<MatchResultPersonalScoreStats>
<Count>1</Count>
<NameId>2130209372</NameId>
<TotalPersonalScoreAwarded>25</TotalPersonalScoreAwarded>
</MatchResultPersonalScoreStats>
</PersonalScores>
<PowerWeaponKills>0</PowerWeaponKills>
<RoundsLost>1</RoundsLost>
<RoundsTied>1</RoundsTied>
<RoundsWon>1</RoundsWon>
<Score>1</Score>
<ShotsFired>1328</ShotsFired>
<ShotsHit>554</ShotsHit>
<Suicides>0</Suicides>
<VehicleDestroys>0</VehicleDestroys>
</CoreStats>
<EliminationStats>
<AlliesRevived>1</AlliesRevived>
<EliminationAssists>1</EliminationAssists>
<EliminationOrder>0</EliminationOrder>
<Eliminations>7</Eliminations>
<EnemyRevivesDenied>1</EnemyRevivesDenied>
<Executions>0</Executions>
<KillsAsLastPlayerStanding>5</KillsAsLastPlayerStanding>
<LastPlayersStandingKilled>1</LastPlayersStandingKilled>
<LivesRemaining>0</LivesRemaining>
<RoundsSurvived>1</RoundsSurvived>
<TimesRevivedByAlly>1</TimesRevivedByAlly>
</EliminationStats>
<ExtractionStats i:nil="true" />
<InfectionStats i:nil="true" />
<OddballStats i:nil="true" />
<StockpileStats i:nil="true" />
<ZonesStats i:nil="true" />
</Stats>
<TeamId>1</TeamId>
</TeamStats>
</Teams>
</MatchStats>
Match skill results #
Returns match information for one or more players, as identified by XUID(s) passed in the players
parameter. Data includes information on the Competitive Skill Rank (CSR).
The {matchId}
segment in the URL should be replaced with the match GUID obtained through the match history call.
Endpoint #
https://skill.svc.halowaypoint.com/hi/matches/{matchId}/skill?players=xuid(000000)
Required Headers #
Header | Required |
---|---|
x-343-authorization-spartan |
Yes |
343-clearance |
No |
Example Response #
JSON #
{
"Value": [
{
"Id": "xuid(PLAYER_XUID)",
"ResultCode": 0,
"Result": {
"TeamMmr": 641.9057183527882,
"RankRecap": {
"PreMatchCsr": {
"Value": 0,
"MeasurementMatchesRemaining": 0,
"Tier": "",
"TierStart": 0,
"SubTier": 0,
"NextTier": "",
"NextTierStart": 0,
"NextSubTier": 0,
"InitialMeasurementMatches": 0
},
"PostMatchCsr": {
"Value": 0,
"MeasurementMatchesRemaining": 0,
"Tier": "",
"TierStart": 0,
"SubTier": 0,
"NextTier": "",
"NextTierStart": 0,
"NextSubTier": 0,
"InitialMeasurementMatches": 0
}
},
"StatPerformances": {
"Kills": {
"Count": 10,
"Expected": 7.8473972946948969,
"StdDev": 4.1884480965453834
},
"Deaths": {
"Count": 8,
"Expected": 7.1222851922370429,
"StdDev": 3.923406702380194
}
},
"TeamId": 0,
"TeamMmrs": {
"0": 641.9057183527882,
"1": 665.48964875529873
},
"RankedRewards": null,
"Counterfactuals": {
"SelfCounterfactuals": {
"Kills": 7.8473972946948969,
"Deaths": 7.1222851922370429
},
"TierCounterfactuals": {}
}
}
}
]
}
XML #
<MatchSkillInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Microsoft.Halo.Skill.Bond">
<Value xmlns:d2p1="http://schemas.datacontract.org/2004/07/Microsoft.Studios.Bond.Contract">
<d2p1:BatchResultItemOfSkillResult4klxvmVx>
<d2p1:Id>xuid(PLAYER_XUID)</d2p1:Id>
<d2p1:Result>
<Counterfactuals>
<SelfCounterfactuals xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d6p1:KeyValueOfstringdouble>
<d6p1:Key>Kills</d6p1:Key>
<d6p1:Value>7.8473972946948969</d6p1:Value>
</d6p1:KeyValueOfstringdouble>
<d6p1:KeyValueOfstringdouble>
<d6p1:Key>Deaths</d6p1:Key>
<d6p1:Value>7.1222851922370429</d6p1:Value>
</d6p1:KeyValueOfstringdouble>
</SelfCounterfactuals>
<TierCounterfactuals xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />
</Counterfactuals>
<RankRecap>
<PostMatchCsr>
<InitialMeasurementMatches>0</InitialMeasurementMatches>
<MeasurementMatchesRemaining>0</MeasurementMatchesRemaining>
<NextSubTier>0</NextSubTier>
<NextTier></NextTier>
<NextTierStart>0</NextTierStart>
<SubTier>0</SubTier>
<Tier></Tier>
<TierStart>0</TierStart>
<Value>0</Value>
</PostMatchCsr>
<PreMatchCsr>
<InitialMeasurementMatches>0</InitialMeasurementMatches>
<MeasurementMatchesRemaining>0</MeasurementMatchesRemaining>
<NextSubTier>0</NextSubTier>
<NextTier></NextTier>
<NextTierStart>0</NextTierStart>
<SubTier>0</SubTier>
<Tier></Tier>
<TierStart>0</TierStart>
<Value>0</Value>
</PreMatchCsr>
</RankRecap>
<RankedRewards i:nil="true" />
<StatPerformances xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d5p1:KeyValueOfstringStatPerformance0zTskUFq>
<d5p1:Key>Kills</d5p1:Key>
<d5p1:Value>
<Count>10</Count>
<Expected>7.8473972946948969</Expected>
<StdDev>4.1884480965453834</StdDev>
</d5p1:Value>
</d5p1:KeyValueOfstringStatPerformance0zTskUFq>
<d5p1:KeyValueOfstringStatPerformance0zTskUFq>
<d5p1:Key>Deaths</d5p1:Key>
<d5p1:Value>
<Count>8</Count>
<Expected>7.1222851922370429</Expected>
<StdDev>3.923406702380194</StdDev>
</d5p1:Value>
</d5p1:KeyValueOfstringStatPerformance0zTskUFq>
</StatPerformances>
<TeamId>0</TeamId>
<TeamMmr>641.9057183527882</TeamMmr>
<TeamMmrs xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d5p1:KeyValueOfintdouble>
<d5p1:Key>0</d5p1:Key>
<d5p1:Value>641.9057183527882</d5p1:Value>
</d5p1:KeyValueOfintdouble>
<d5p1:KeyValueOfintdouble>
<d5p1:Key>1</d5p1:Key>
<d5p1:Value>665.48964875529873</d5p1:Value>
</d5p1:KeyValueOfintdouble>
</TeamMmrs>
</d2p1:Result>
<d2p1:ResultCode>Success</d2p1:ResultCode>
</d2p1:BatchResultItemOfSkillResult4klxvmVx>
</Value>
</MatchSkillInfo>
Match progression #
Returns information about challenges a player completed in a match.
The {player}
segment in the endpoint URL should be replaced with the player XUID, in the format of xuid(00000)
. The ID must be the same for the user that authorized the API request (i.e., logged in with their Microsoft account and produced the Spartan token).
The {matchId}
segment in the URL should be replaced with the match GUID obtained through the match history call.
Endpoint #
https://halostats.svc.halowaypoint.com/hi/players/{player}/matches/{matchId}/progression
Required Headers #
Header | Required |
---|---|
x-343-authorization-spartan |
Yes |
343-clearance |
No |
Example Response #
JSON #
{
"ClearanceId": "d0cf5367-9a25-4ee1-9fbb-1403cb20e20b",
"RewardId": "Challenges-2bbce533-00d4-4d1b-a790-790a7311284f",
"ChallengeProgressState": [
{
"Path": "ChallengeContent/ClientChallengeDefinitions/S1RotationalSet1Challenges/Normal/NTeamSlayerPlay.json",
"Id": "9a2bee3e-ba5b-4245-a02f-53b2f9453da9",
"PreviousProgress": 0,
"Progress": 0
},
{
"Path": "ChallengeContent/ClientChallengeDefinitions/ModeChallenges/Heroic/HStrongholdsWin.json",
"Id": "6ffaf79a-9e68-43e4-a40c-153810b021af",
"PreviousProgress": 0,
"Progress": 0
},
{
"Path": "ChallengeContent/ClientChallengeDefinitions/S1EventSynthwaveChallenges/Legendary/LSynthwaveMedalRevive.json",
"Id": "6db1ddf6-5b6b-4d8b-85ae-12a9634ed89e",
"PreviousProgress": 0,
"Progress": 0
},
{
"Path": "ChallengeContent/ClientChallengeDefinitions/DailyChallenges/PlayNew/d0NPlay.json",
"Id": "c4c5355d-7a7e-4d72-88c5-c3f590cc74e7",
"PreviousProgress": 0,
"Progress": 1
}
]
}
XML #
<MatchProgressionResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Microsoft.Halo.HaloStats.Bond.HaloInfinite">
<ChallengeProgressState>
<ChallengeProgression>
<Id xmlns:d4p1="http://schemas.datacontract.org/2004/07/Bond">
<d4p1:Data1>2586570302</d4p1:Data1>
<d4p1:Data2>47707</d4p1:Data2>
<d4p1:Data3>16965</d4p1:Data3>
<d4p1:Data4>12194980304730140576</d4p1:Data4>
</Id>
<Path>ChallengeContent/ClientChallengeDefinitions/S1RotationalSet1Challenges/Normal/NTeamSlayerPlay.json</Path>
<PreviousProgress>0</PreviousProgress>
<Progress>0</Progress>
</ChallengeProgression>
<ChallengeProgression>
<Id xmlns:d4p1="http://schemas.datacontract.org/2004/07/Bond">
<d4p1:Data1>1878718362</d4p1:Data1>
<d4p1:Data2>40552</d4p1:Data2>
<d4p1:Data3>17380</d4p1:Data3>
<d4p1:Data4>12619561214575709348</d4p1:Data4>
</Id>
<Path>ChallengeContent/ClientChallengeDefinitions/ModeChallenges/Heroic/HStrongholdsWin.json</Path>
<PreviousProgress>0</PreviousProgress>
<Progress>0</Progress>
</ChallengeProgression>
<ChallengeProgression>
<Id xmlns:d4p1="http://schemas.datacontract.org/2004/07/Bond">
<d4p1:Data1>1840373238</d4p1:Data1>
<d4p1:Data2>23403</d4p1:Data2>
<d4p1:Data3>19851</d4p1:Data3>
<d4p1:Data4>11445984642907418245</d4p1:Data4>
</Id>
<Path>ChallengeContent/ClientChallengeDefinitions/S1EventSynthwaveChallenges/Legendary/LSynthwaveMedalRevive.json</Path>
<PreviousProgress>0</PreviousProgress>
<Progress>0</Progress>
</ChallengeProgression>
<ChallengeProgression>
<Id xmlns:d4p1="http://schemas.datacontract.org/2004/07/Bond">
<d4p1:Data1>3301258589</d4p1:Data1>
<d4p1:Data2>31358</d4p1:Data2>
<d4p1:Data3>19826</d4p1:Data3>
<d4p1:Data4>16678180243030394248</d4p1:Data4>
</Id>
<Path>ChallengeContent/ClientChallengeDefinitions/DailyChallenges/PlayNew/d0NPlay.json</Path>
<PreviousProgress>0</PreviousProgress>
<Progress>1</Progress>
</ChallengeProgression>
</ChallengeProgressState>
<ClearanceId xmlns:d2p1="http://schemas.datacontract.org/2004/07/Bond">
<d2p1:Data1>3503248231</d2p1:Data1>
<d2p1:Data2>39461</d2p1:Data2>
<d2p1:Data3>20193</d2p1:Data3>
<d2p1:Data4>856282935455955871</d2p1:Data4>
</ClearanceId>
<RewardId>Challenges-2bbce533-00d4-4d1b-a790-790a7311284f</RewardId>
</MatchProgressionResponse>
Spectating a match #
One of the more interesting endpoints that allows you to spectate the match. The content returned is representative of zlib-compressed links to chunks of a film file, that need to be downloaded and assembled. I haven’t yet fully “unpacked” (pun intended) the content here, so this will likely end up being a topic for a different blog post.
Chunks can be assembled by appending the FileRelativePath
property of each chunk to BlobStoragePathPrefix
in the response. While the call to get the list of chunks requires the Spartan token, this requirement does not apply to content that is being pulled from the blob storage.
The {matchId}
segment in the URL should be replaced with the match GUID obtained through the match history call.
Endpoint #
https://discovery-infiniteugc.svc.halowaypoint.com/hi/films/matches/{matchId}/spectate
Required Headers #
Header | Required |
---|---|
x-343-authorization-spartan |
Yes |
343-clearance |
No |
Example Response #
JSON #
{
"FilmStatusBond": 1,
"CustomData": {
"FilmLength": 503851,
"Chunks": [
{
"Index": 0,
"ChunkStartTimeOffsetMilliseconds": 0,
"DurationMilliseconds": 5463,
"ChunkSize": 421118,
"FileRelativePath": "/filmChunk0",
"ChunkType": 1
},
{
"Index": 1,
"ChunkStartTimeOffsetMilliseconds": 0,
"DurationMilliseconds": 20008,
"ChunkSize": 89491,
"FileRelativePath": "/filmChunk1",
"ChunkType": 2
},
{
"Index": 2,
"ChunkStartTimeOffsetMilliseconds": 20009,
"DurationMilliseconds": 20004,
"ChunkSize": 258520,
"FileRelativePath": "/filmChunk2",
"ChunkType": 2
},
{
"Index": 3,
"ChunkStartTimeOffsetMilliseconds": 40014,
"DurationMilliseconds": 20002,
"ChunkSize": 282416,
"FileRelativePath": "/filmChunk3",
"ChunkType": 2
},
{
"Index": 4,
"ChunkStartTimeOffsetMilliseconds": 60017,
"DurationMilliseconds": 20003,
"ChunkSize": 315053,
"FileRelativePath": "/filmChunk4",
"ChunkType": 2
},
{
"Index": 5,
"ChunkStartTimeOffsetMilliseconds": 80021,
"DurationMilliseconds": 20002,
"ChunkSize": 292954,
"FileRelativePath": "/filmChunk5",
"ChunkType": 2
},
{
"Index": 6,
"ChunkStartTimeOffsetMilliseconds": 100024,
"DurationMilliseconds": 20003,
"ChunkSize": 279176,
"FileRelativePath": "/filmChunk6",
"ChunkType": 2
},
{
"Index": 7,
"ChunkStartTimeOffsetMilliseconds": 120028,
"DurationMilliseconds": 20003,
"ChunkSize": 332176,
"FileRelativePath": "/filmChunk7",
"ChunkType": 2
},
{
"Index": 8,
"ChunkStartTimeOffsetMilliseconds": 140032,
"DurationMilliseconds": 20002,
"ChunkSize": 254676,
"FileRelativePath": "/filmChunk8",
"ChunkType": 2
},
{
"Index": 9,
"ChunkStartTimeOffsetMilliseconds": 160035,
"DurationMilliseconds": 20004,
"ChunkSize": 230969,
"FileRelativePath": "/filmChunk9",
"ChunkType": 2
},
{
"Index": 10,
"ChunkStartTimeOffsetMilliseconds": 180039,
"DurationMilliseconds": 20012,
"ChunkSize": 161498,
"FileRelativePath": "/filmChunk10",
"ChunkType": 2
},
{
"Index": 11,
"ChunkStartTimeOffsetMilliseconds": 200052,
"DurationMilliseconds": 20008,
"ChunkSize": 253989,
"FileRelativePath": "/filmChunk11",
"ChunkType": 2
},
{
"Index": 12,
"ChunkStartTimeOffsetMilliseconds": 220061,
"DurationMilliseconds": 20008,
"ChunkSize": 284788,
"FileRelativePath": "/filmChunk12",
"ChunkType": 2
},
{
"Index": 13,
"ChunkStartTimeOffsetMilliseconds": 240070,
"DurationMilliseconds": 20003,
"ChunkSize": 297442,
"FileRelativePath": "/filmChunk13",
"ChunkType": 2
},
{
"Index": 14,
"ChunkStartTimeOffsetMilliseconds": 260073,
"DurationMilliseconds": 20003,
"ChunkSize": 333335,
"FileRelativePath": "/filmChunk14",
"ChunkType": 2
},
{
"Index": 15,
"ChunkStartTimeOffsetMilliseconds": 280076,
"DurationMilliseconds": 20004,
"ChunkSize": 290446,
"FileRelativePath": "/filmChunk15",
"ChunkType": 2
},
{
"Index": 16,
"ChunkStartTimeOffsetMilliseconds": 300081,
"DurationMilliseconds": 20004,
"ChunkSize": 323508,
"FileRelativePath": "/filmChunk16",
"ChunkType": 2
},
{
"Index": 17,
"ChunkStartTimeOffsetMilliseconds": 320085,
"DurationMilliseconds": 20004,
"ChunkSize": 254118,
"FileRelativePath": "/filmChunk17",
"ChunkType": 2
},
{
"Index": 18,
"ChunkStartTimeOffsetMilliseconds": 340089,
"DurationMilliseconds": 20003,
"ChunkSize": 223779,
"FileRelativePath": "/filmChunk18",
"ChunkType": 2
},
{
"Index": 19,
"ChunkStartTimeOffsetMilliseconds": 360093,
"DurationMilliseconds": 20017,
"ChunkSize": 266553,
"FileRelativePath": "/filmChunk19",
"ChunkType": 2
},
{
"Index": 20,
"ChunkStartTimeOffsetMilliseconds": 380111,
"DurationMilliseconds": 20002,
"ChunkSize": 321132,
"FileRelativePath": "/filmChunk20",
"ChunkType": 2
},
{
"Index": 21,
"ChunkStartTimeOffsetMilliseconds": 400114,
"DurationMilliseconds": 20004,
"ChunkSize": 299751,
"FileRelativePath": "/filmChunk21",
"ChunkType": 2
},
{
"Index": 22,
"ChunkStartTimeOffsetMilliseconds": 420119,
"DurationMilliseconds": 20003,
"ChunkSize": 303751,
"FileRelativePath": "/filmChunk22",
"ChunkType": 2
},
{
"Index": 23,
"ChunkStartTimeOffsetMilliseconds": 440123,
"DurationMilliseconds": 20007,
"ChunkSize": 267549,
"FileRelativePath": "/filmChunk23",
"ChunkType": 2
},
{
"Index": 24,
"ChunkStartTimeOffsetMilliseconds": 460131,
"DurationMilliseconds": 20002,
"ChunkSize": 306654,
"FileRelativePath": "/filmChunk24",
"ChunkType": 2
},
{
"Index": 25,
"ChunkStartTimeOffsetMilliseconds": 480134,
"DurationMilliseconds": 18271,
"ChunkSize": 154820,
"FileRelativePath": "/filmChunk25",
"ChunkType": 2
},
{
"Index": 26,
"ChunkStartTimeOffsetMilliseconds": 498406,
"DurationMilliseconds": 2,
"ChunkSize": 56734,
"FileRelativePath": "/filmChunk26",
"ChunkType": 3
}
],
"HasGameEnded": true,
"ManifestRefreshSeconds": 30,
"MatchId": "2bbce533-00d4-4d1b-a790-790a7311284f",
"FilmMajorVersion": 23
},
"BlobStoragePathPrefix": "https://blobs-infiniteugc.svc.halowaypoint.com/ugcstorage/film/58d7bea9-7213-4e7e-a627-dc9c9b99c54a/eb594f81-a37d-46f6-b550-aa4ba8210a07/"
}
XML #
There is no XML response for this endpoint.
Conclusion #
This blog post doesn’t do anything ground-breaking with the data and instead just documents the endpoints - mainly for my own reference if I want to get back to this particular set of functionality and see what’s evolving. I am still curious about the film format that is exposed through the /spectate
format but my hunch is that we are not getting video content there at all, but rather a mapping of entities on the playing field (a map, if you will) with a description of their actions. The reason I am thinking this way is because the uncompressed content is very compact and doesn’t have the easily-visible signs of videos. Besides, if you look at how you can take the camera into your own hands in the game, I really don’t think they are packing all that in 26 chunks that are less than 50MB total. Time will tell.